.bg-login {
    background-image: url("../images/bg-login-2.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    overflow: auto;
}

.bg-login-2 {
    margin-top: 50px;
    padding-right: 90px;
}

.info-login {
    align-items: center;
}

.img-login {
    width: 80%;
    margin: auto;
}

.img-login img {
    width: 100%;
    height: auto;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 30px;
    width: 450px;
    border-radius: 8px;
    font-family: "JetBrains Mono", monospace;
    margin-left: auto;
}

.title-login {
    color: #2462A7;
    -webkit-text-stroke: 1px black;
    text-shadow: 4px 0px 0 rgb(252 175 23);
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
  
::placeholder {
    font-family: "JetBrains Mono", monospace;
}

.form button {
    align-self: flex-end;
}

.flex-column > label {
    color: #151717;
    font-weight: 600;
}

.inputForm {
    margin-bottom: 10px;
    border-radius: 12px;
}

.inputForm-2 {
    position: relative;
}

.input {
    padding: 13px 20px;
    color: black;
    border-radius: 10px;
    border: 1px solid #B8B9B8;
    width: 100%;
    height: 100%;
}

.inputForm-2 span {
    position: absolute;
    top: 16px;
    right: 0;
    cursor: pointer;
}

.input:focus {
    outline: none;
    border-radius: 10px;
}

.text-danger {
    font-size: 14px;
    padding-left: 10px;
    margin-top: 5px;
}

.inputForm:focus-within {
    border: 1.5px solid #2d79f3;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.flex-row > div > label {
    font-size: 14px;
    color: black;
    font-weight: 400;
}

.span {
    font-size: 14px;
    margin-left: 5px;
    color: #2462A7;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.span:hover {
    text-decoration: underline;
}

.button-submit {
    margin: 20px 0 10px 0;
    background-color: #3AA877;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    height: 50px;
    width: 100%;
}

.p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.btn:hover {
    border: 1px solid #2d79f3;
}

.toggle-password {
    color: black;
    padding-right: 10px;
}

/* đăng ký thành công */

.img-success {
    width: 40%;
    margin: auto;
}

.img-success img {
    width: 100%;
    height: auto;
}

.title-success {
    font-size: 25px;
    font-weight: 700;
    color: #2462A7;
    -webkit-text-stroke: 1px black;
    text-shadow: 4px 0px 0 rgb(252 175 23);
    text-align: center;
    margin: 15px 0;
}

.text-success {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

@media(max-width: 991px) {
    .bg-login-2 {
        padding-right: 0;
    }

    .img-login {
        width: 50%;
        margin-bottom: 50px;
    }

    .form {
        margin-right: auto;
    }
}

@media(max-width: 450px) {
    .form {
        width: 100%;
        padding: 20px;
    }

    .bg-login-2 {
        margin-top: 0;
    }
}

/* body trang đăng ký */