﻿.login-background {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.background-illustration {
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 100%;
    opacity: 0.15;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    width: 250px;
    margin-bottom: 0.5rem;
    height: auto;
}

.login-header h2 {
    font-weight: 600;
    font-size: 1.6rem;
    margin: 0;
    color: #bde9e3;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(0, 39, 45, 0.15);
    color: #3f3f3f;
}

    .form-group .icon {
        margin-right: 0.6rem;
        color: #5cc4b8;
        font-size: 1.1rem;
    }

    .form-group input {
        flex: 1;
        background: transparent;
        border: none;
        color: #3f3f3f;
        font-size: 1rem;
        outline: none;
    }

        .form-group input::placeholder {
            color: #8bb8b2;
        }

.btn-login {
    background-color: #35b7a4;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 0.7rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .btn-login:hover {
        background-color: #2ea592;
    }

.error-message {
    margin-top: 0.5rem;
    color: #ff7777;
    text-align: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #23232329;
}

@media (max-width: 768px) {
    .login-card {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
}
