﻿.login-section {
    margin-top: 18px;
}

.login-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #212529;
}

.login-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-body {
    display: inline-grid;
    padding: 15px;
    border-radius: 10px;
    width: 400px;
    height: auto;
}

    .form-body label {
        color: #c9c9c9;
    }

.link-to-register {
    color: #fff;
}

    .link-to-register:hover {
        color: #f06e65;
    }

.user-avatar-wrapper {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
}

    .user-avatar-wrapper:before {
        content: "";
        width: 100px;
        height: 1px;
        background-color: #F44336;
    }

    .user-avatar-wrapper:after {
        content: "";
        width: 100px;
        height: 1px;
        background-color: #F44336;
    }

.user-avatar-container {
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #F44336;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar-container {
    width: 100px;
    height: 100px;
}

.user-avatar-icon {
    font-size: 4em;
    color: #F44336;
}

.forgot-password-link {
    text-align: right;
    font-size: 0.9rem;
}

    .forgot-password-link a {
        color: #f06e65;
        text-decoration: none;
    }

        .forgot-password-link a:hover {
            text-decoration: underline;
        }


.btn-login {
    background-color: #eb676c;
    transition: background-color 0.3s ease;
}

    .btn-login:hover {
        background-color: #d85a5f;
    }

    .btn-login:active {
        background-color: #eb676c !important;
        border: none;
    }

    .btn-login:focus-visible {
        background-color: #eb676c !important;
    }

.login-register-cta {
    margin-top: 1rem;
    text-align: center;
    color: #c9c9c9;
}

.content-pass-input {
    position: relative;
}

.btn-eyes-pass {
    cursor: pointer;
    position: absolute;
    font-size: 1em;
    color: white;
    padding: 1em;
    top: 24px;
    right: 0;
}
.btn-eyes-pass, #togglePassword {
    pointer-events: auto;
}
    .btn-eyes-pass.hide {
        display: none !important;
    }
@media (max-width: 575.98px) {
    .form-body {
        width: 100%;
        padding: 20px;
    }

    .user-avatar-wrapper {
        width: 100%;
        padding: 10px 0;
        gap: 10px;
    }

    .user-avatar-container {
        width: 80px;
        height: 80px;
    }

    .user-avatar-icon {
        font-size: 2.5em;
    }

    .btn-login {
        width: 100%;
    }

    .forgot-password-link {
        text-align: center;
        margin-top: -5px;
        margin-bottom: 10px;
    }

    .login-register-cta {
        font-size: 0.95rem;
    }
}

