body {
    font-family: 'Roboto', sans-serif;
}

.password-container {
    position: relative;
}

.fa-eye {
    position: absolute;
    top: 14px;
    right: 8px;
    cursor: pointer;
    color: gray;
}
#anhBgRegister {
    width: 100%;
    height: 675px;
    background: url(../images/AnhBgRegister.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
}

#formRegister {
    background-color: white;
    width: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;

    padding: 25px 25px 25px 0;
}

#sloganRegister {
    font-size: 47px;
    font-weight: bold;
    color: white;

}

#topForm {
    flex-basis: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52.5px;
}

#topForm a:first-child {
    color: black;
}

#topForm a:nth-last-child(1) {

    color: var(--color--secondary);
    border-bottom: 1px solid var(--color--secondary);
}

#bodyForm {
    flex-basis: 80%;
    padding-left: 25px;
    display: flex;
}

button.btn.btn-dark {
    background-color: var(--color--secondary);
    width: 160px;
    border-radius: 15px;
    border-color: var(--color--secondary);
}

button.btn.btn-dark:hover {
    background-color: #1c7ef7;
    border-color: var(--color--secondary);
}

#accAvailable {
    color:var(--color--secondary);
    float: right;
}

#accAvailable:hover {
    color: #1c7ef7;
}

.floatLeft {
    float: left;
}


.submit-button{
    margin-top: 10px;
    background-color: var(--color--secondary);

    color: white;
    font-weight: bold;
}


.form-group{
    padding-top: 10px;
}