/* Контейнер формы */
.email-verify-container {
    max-width: 99%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e8f0fe 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.email-verify-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.email-verify-title {
    color: #1a3c34;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.email-verify-subtitle {
    color: #5a6a76;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
}

/* Стили для формы */
.email-verify-form-group {
    margin-bottom: 20px;
}

.email-verify-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #1a3c34;
    font-weight: 600;
    font-size: 1rem;
}

.email-verify-input {
    padding: 12px !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    border: 1px solid #ced4da !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.email-verify-input:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3) !important;
    outline: none !important;
}

/* Стили для кнопки */
.email-verify-btn {
    display: inline-block !important;
    background-color: #28a745 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 30px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.email-verify-btn:hover {
    background-color: #218838 !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px) !important;
    color: white !important;
}

/* Стили для ввода кода */
.email-verify-code-inputs {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 20px 0 !important;
}

.email-verify-code-digit {
    width: 30px !important;
    height: 40px !important;
    font-size: 1.5rem !important;
    text-align: center !important;
    border: none !important;
    border-bottom: 2px solid #ced4da !important;
    background: transparent !important;
    transition: border-color 0.3s ease !important;
}

.email-verify-code-digit:focus {
    border-color: #28a745 !important;
    outline: none !important;
}

/* Стили для сообщений */
.email-verify-message.success {
    color: #28a745 !important;
    font-weight: 600 !important;
}

.email-verify-message.error {
    color: #dc3545 !important;
    font-weight: 600 !important;
}

/* Адаптация для маленьких экранов */
@media (max-width: 768px) {
    .email-verify-container {
        max-width: 90% !important;
        padding: 20px !important;
    }
    .email-verify-input {
        max-width: 100% !important;
    }
    .email-verify-code-digit {
        width: 25px !important;
        height: 35px !important;
        font-size: 1.2rem !important;
    }
}