/* static/style.css — RESPONSIVE + ЧЁТКИЙ ТЕКСТ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fc;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    line-height: 1.6;
}

.container {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 520px;
    width: 100%;
    text-align: center;
}

/* ЛОГОТИП — АДАПТИВНЫЙ */
.logo {
    width: 280px;
    height: auto;
    margin-bottom: 1.8rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

/* ТЕКСТ — БОЛЬШЕ НА КОМПЕ */
h1 {
    font-size: 2rem; /* Большой на ПК */
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

p {
    font-size: 1.1rem; /* Чёткий на ПК */
    color: #555;
    margin-bottom: 1.8rem;
}

/* ПОЛЕ И КНОПКА */
input[type="email"] {
    width: 100%;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1.1rem;
    background: #f8f9fc;
}

button, .btn {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 14px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(67,97,238,0.3);
}

/* RESPONSIVE — НА ТЕЛЕФОНЕ МЕНЬШЕ */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .logo {
        width: 200px; /* Меньше на телефоне */
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 1.6rem; /* Меньше */
    }

    p {
        font-size: 0.95rem; /* Компактнее */
    }

    input[type="email"] {
        padding: 0.9rem;
        font-size: 1rem;
    }

    button, .btn {
        padding: 0.9rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 180px;
    }

    h1 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }
}