/* Login Page Styles */
body {
    background: linear-gradient(135deg, #18554C 0%, #247f71 50%, #2a8f7f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    margin: 20px;
    backdrop-filter: blur(10px);
}

h2 {
    color: #18554C;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    background: none;
    padding: 0;
}

.input-group {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: #18554C;
    box-shadow: 0 0 0 3px rgba(24, 85, 76, 0.1);
}

.input-group i {
    font-size: 20px;
    margin-right: 10px;
    color: #18554C;
}

.input-group input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    background: none;
    font-weight: 600;
}

.input-group input::placeholder {
    font-weight: 600;
    opacity: 0.7;
}

.remember-me {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.remember-me label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.forgot-password {
    color: #18554C;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.forgot-password:hover {
    color: #247f71;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn, .btn_cancel {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn {
    background: #18554C;
    color: white;
}

.btn:hover {
    background: #247f71;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 85, 76, 0.3);
}

.btn_cancel {
    background: #e1e1e1;
    color: #666;
}

.btn_cancel:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}

.signup-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.signup-link a {
    color: #18554C;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #247f71;
}

.error-message {
    background: #ffe6e6;
    color: #dc3545;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 576px) {
    .login-container {
        padding: 30px 20px;
        margin: 15px;
    }

    h2 {
        font-size: 2rem;
    }

    .input-group {
        padding: 10px 12px;
    }

    .input-group i {
        font-size: 18px;
    }

    .input-group input {
        font-size: 0.9rem;
    }

    .btn, .btn_cancel {
        padding: 10px;
        font-size: 1rem;
    }

    .remember-me {
        font-size: 0.8rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-container {
    animation: fadeIn 0.6s ease-out;
} 