/* ============================================
   СТИЛИ ДЛЯ ОКНА ВХОДА УЧИТЕЛЕЙ (ОТДЕЛЬНО)
============================================ */

/* Оверлей для учителей */
.modal-overlay.teacher {
    background: linear-gradient(135deg, 
        rgba(56, 178, 172, 0.95) 0%, 
        rgba(40, 94, 97, 0.95) 100%);
}

/* Контейнер учителей */
.modal-container.teacher {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-container.teacher h3 {
    color: #285e61;
}

.modal-container.teacher h3::after {
    background: linear-gradient(90deg, #38b2ac, #285e61);
}

/* Поля ввода учителей */
.modal-container.teacher input[type="text"]:focus,
.modal-container.teacher input[type="password"]:focus {
    border-color: #38b2ac;
    box-shadow: 0 0 0 4px rgba(56, 178, 172, 0.1);
}

/* Кнопка учителей */
.modal-container.teacher button[type="submit"] {
    background: linear-gradient(135deg, #38b2ac 0%, #285e61 100%);
}

.modal-container.teacher button[type="submit"]:hover {
    background: linear-gradient(135deg, #319795 0%, #234e52 100%);
    box-shadow: 0 12px 24px rgba(56, 178, 172, 0.3);
}

/* Специфичные иконки для учителей */
.modal-container.teacher::before {
    content: '👨‍🏫';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid #38b2ac;
}

/* Анимация иконки */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

.modal-container.teacher::before {
    animation: bounce 2s ease-in-out infinite;
}

/* Дополнительные стили для текста */
.modal-container.teacher {
    position: relative;
}

.modal-container.teacher::after {
    content: 'Добро пожаловать в систему';
    display: block;
    text-align: center;
    color: #718096;
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}