.body-content {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.success {
    height: 100vh;
    display: flex;
    justify-content: center;
}

.success .center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success .center img {
    width: 420px;
    height: 420px;
}

.s-title {
    font-size: 24px;
    font-weight: bold;
}

.center-alig {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    font-weight: bold;
    letter-spacing: 1.5px;
    font-size: 28px;
    text-shadow: 1px 1px rgba(11, 171, 59, 0.654);
    color: rgb(14, 158, 6);
}

.inp {
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.text {
    width: 420px;
}

.line {
    margin: 10px;
}

.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.btn-content {
    display: flex;
    justify-content: center;
}

.btn-account {
    margin: 10px;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px --bs-teal;
    background: linear-gradient(to right, rgb(182, 244, 146), rgb(51, 139, 147));
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-account:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.btn-account:active {
    transform: scale(0.95);
}

.pass-content {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.pass-content .right,
.pass-content .left {
    width: 100%;
}

.pass-content .left {
    display: flex;
    justify-content: end;
}

.pass-content .right {
    display: flex;
    justify-content: center;
}

.form {
    width: 360px;
    padding: 10px;
    height: 480px;
    border: 1px solid rgb(217, 217, 217);
}

.form .center img {
    width: 240px;
    height: 240px;
    margin-top: -100px;
}

.form .center {
    display: flex;
    justify-content: center;
}

.title-new {
    font-weight: bolder;
    color: #004ba7;
    font-size: 28px;
}

.inp-label {
    position: absolute;
    margin-top: -35px;
    margin-left: 15px;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    pointer-events: none;
}

.form-outline {
    height: 70px;
}

.form-control {
    transition: all 0.3s ease-in-out !important;
}

.inp {
    transition: all 0.3s ease-in-out;
    box-shadow: none !important;
}

.inp:focus~.inp-label,
.inp:valid~.inp-label {
    margin-top: -55px;
    margin-left: 15px;
    font-size: 12px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    padding: 2.5px 10px;
    transition: all 0.3s ease-in-out;
}

.btn-save {
    text-align: center;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    color: rgb(42, 127, 255);
    font-size: 24px;
    border: 1px solid rgb(42, 127, 255);
    transition: all 0.3s ease-in-out;
}

.btn-save:hover {
    border-radius: 75px;
    color: #fff;
    box-shadow: rgba(0, 8, 255, 0.48) 6px 2px 16px 0px, rgba(166, 242, 255, 0.8) -6px -2px 16px 0px;
    background: rgb(42, 127, 255);
    width: 120px;
}

.text-err {
    font-size: 12px;
}

.err-content {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.err-content .left,
.err-content .rigth {
    width: 100%;
}

.err-content .left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.err-content .left img {
    width: 480px;
    height: 480px;
}

.err-content .rigth p.header {
    font-size: 36px;
    color: #0056a1;
    font-weight: bold;
}

.err-content .rigth span {
    color: #6c757d;
}