* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: #ffffff;
    border: 2px dashed #f39c12;
    padding: 50px 40px;
    text-align: center;
    max-width: 420px;
    border-radius: 12px;
}

.icon {
    font-size: 64px;
    margin-bottom: 20px;
}

h1 {
    color: #f39c12;
    margin-bottom: 15px;
}

p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.logo {
    width: 350px;
    height: auto;
    margin-bottom: 18px;
}


