.div-form-login-us-styles {
    background-color: rgb(200, 0, 50);
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    width: max-content;
    align-content: center;
    text-align: center;
    font-family: PrimaryFont;
    font-weight: lighter;
    color: azure;
    padding-inline: 20px;
    transition: all var(--ttr300) ease-in-out;
    h3 {
        font-size: 25px;
        font-weight: lighter;
    }

    label {
        font-size: 20px;
    }

    button {
        margin-bottom: 15px;
        width: 80px;
        padding: 5px;
        border-radius: 50vh;
        transition: all var(--ttr300) ease-in-out;
    }

    button:hover {
        background-color: goldenrod;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.9);
    }
}

.div-input-login {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 2px solid rgb(200, 0, 50);
    border-radius: 50vh;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 25px;
    text-align: center;
    transition: all var(--ttr300) ease-in-out;
}


.div-input-login:hover {
    border-color:  goldenrod;
}


.div-input-password{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--bgc-input);
    border: 1px rgb(112, 0, 0) solid;
    border-radius: 50vh;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 23px;
    width: 184px;
    text-align: left;
    transition: all var(--ttr300) ease-in-out;
}

.div-input-password:hover {
    border-color:  goldenrod;
}

.input-login {
    text-align: center;
    border: none;
    outline: none;
    transition: all var(--ttr300) ease-in-out;
}

.input-password {
    width: 86%;
    text-align: left;
    border: none;
    outline: none;
    transition: all var(--ttr300) ease-in-out;
}

.input-bg-var-bgc-input {
    background-color: var(--bgc-input);
}

.input-color-var-bgc-theme {
    color: var(--bgc-theme);
}


.div-form-login-us-styles:hover {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.9);
}
