/* Login page specific styles */

.login-section {
    min-height: 80vh;
    padding: 150px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-form {
    margin-top: 30px;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-message {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

.form-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #d32f2f;
    display: block;
}

.form-message.success {
    background-color: rgba(22, 223, 158, 0.1);
    color: var(--secondary);
    display: block;
}

.login-options {
    margin-top: 15px;
    text-align: center;
}

.login-helper {
    color: var(--text-light);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.login-helper a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-helper a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Enhanced Login Button */
.login-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 15px 30px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(107, 70, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.login-btn span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.login-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    animation: shine 3s infinite;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 70, 255, 0.5);
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
}

.login-btn:hover i {
    transform: translateX(3px);
}

.login-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 70, 255, 0.5);
}

.login-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(107, 70, 255, 0.4);
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Standard highlight styles as in other files */
.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: rgba(107, 70, 255, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 2px;
}
