.login-logo {
    text-align: center;
}

.login-logo img {
    max-width: 80px;
    width: 100%;
    margin-bottom: 2rem;
}

#container {
    background-color: #f7f7f7;
    padding: 2rem;
    border-radius: 3rem;
    max-width: 22rem;
}

#account-activation-container {
    background-color: #f7f7f7;
    padding: 2rem;
    border-radius: 3rem;
    max-width: 28rem;
    min-width: 20rem;
}

body {
    background-color: rgb(0, 7, 70);
    background-image: url('../media/login/banner.webp');
    background-size: cover;
    background-position: center;
}

.btn-forgot {
    color: rgb(0, 0, 0);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2rem;
    border: 2px solid rgba(255, 255, 255, 0);
    margin-left: 6rem;
    width: 100%;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-forgot:hover {
    color: rgb(0, 0, 0);
    background-color: rgba(0, 7, 70, 0);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2rem;
    margin-left: 6rem;
    border: 2px solid rgba(255, 255, 255, 0);
    width: 100%;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.fields-login {
    display: flex;
    flex-direction: column;
}

.email-label {
    font-size: 1rem;
    font-weight: 600;
    padding-top: 0.5rem;
}

.email-field {
    height: 3rem;
    border-radius: 5rem;
}

.forgot-label {
    font-size: 1rem;
    font-weight: 600;
    padding-top: 0.5rem;
}

.forgot-field {
    height: 3rem;
}

.input-group.password-toggle {
    border-radius: 0.5rem;
    overflow: hidden;
}

.input-group.password-toggle {
    border-radius: 5rem !important;
    overflow: hidden;
    border: 1px solid #ced4da;
    display: flex;
    align-items: stretch;
    background-color: #fff;
}

.input-group.password-toggle .forgot-field {
    border: none !important;
    height: 3rem;
    padding-left: 1.5rem;
    box-shadow: none !important;
    flex: 1;
}

.btn-toggle {
    background: transparent;
    border: none !important;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.2s;
}

.btn-toggle:hover {
    color: rgb(0, 7, 70);
}

.visibility-password {
    font-size: 1.3rem;
    vertical-align: middle;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(0, 7, 70);
}

.btn-forgot:active,
.btn-forgot:focus {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    color: rgb(0, 0, 0) !important;
}