.pages {
    width: 100%;
    height: 100vh;
}
.container-body {
    position: relative;
    left: 0;
    right: 0;
    margin: auto; 
}
.wrapper-body {
    display: table-cell;
    vertical-align: middle;
    padding: 50px 0 75px 0;
}
.box-body {
    width: 100%;
    height: auto;
    box-shadow: 0px 20px 60px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
    overflow: hidden;
}
.box-left {
    background: var(--color-red);
    text-align: center;
}
.box-left img {
    width: 87%;
    height: 100%;
    object-fit: contain;
}
.animation-2 {
    border-radius: 50%;
    background-color: #2f3c71;
    -webkit-box-shadow: 0px 20px 30px 0px rgb(48 61 114 / 40%);
    box-shadow: 0px 20px 30px 0px rgb(48 61 114 / 40%);
    position: absolute;
    width: 25px;
    height: 25px;
    top: -60px;
    right: 80px;
    -webkit-animation: spin 2s infinite alternate;
    animation: spin 2s infinite alternate;
}
.animation-3 {
    border-radius: 50%;
    background-color: #f5828b;
    -webkit-box-shadow: 0px 20px 30px 0px rgb(245 130 139 / 40%);
    box-shadow: 0px 20px 30px 0px rgb(245 130 139 / 40%);
    position: absolute;
    width: 25px;
    height: 25px;
    bottom: 40px;
    left: 10px;
    -webkit-animation: spin 3s infinite alternate;
    animation: spin 3s infinite alternate;
}
/*** Spin 2 ***/ 

@keyframes spin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}

.box-right {
    text-align: left;
    padding: 75px 55px;
}
.logo-form {
    width: 130px;
    margin-bottom: 25px;
}
.box-right form {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    text-align: left;
    margin-top: 25px;
}
.box-right label {
    font-size: 14.5px;
    color: #1e3547;
    width: 100%;
}
.iti {
    width: 100%;
}
.form-group {
    margin-bottom: 1.5rem;
}
.box-right input[type="text"] {
    font-size: 15px;
    padding-left: 15px;
    color: #828f99;
    padding: .375rem .75rem;
    border: 1px solid #ced4da;
}
.box-right textarea {
    font-size: 15px;
    padding-left: 15px;
    color: #828f99;
    padding: .375rem .75rem;
    border: 1px solid #ced4da;
    width: 100%;
    border-radius: 0.25rem;
}
.box-right select {
    font-size: 15px;
    padding-left: 15px;
    color: #828f99;
    padding: .375rem .75rem;
    border: 1px solid #ced4da;
    width: 100%;
    border-radius: 0.25rem;
}
.box-right button {
    background: var(--color-red);
    border-color: var(--color-red);
    width: 100%;
    font-size: 15px;
    padding: 0.6rem 1.3rem;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    font-weight: 400;
    margin-top: 15px;
}
input[type=checkbox] {
    width: 1rem;
    height: 1.25rem;
    position: relative;
    top: 18px;
    display: inline-block;
}
.form-check {
    padding-left: 0;
}
.form-check-label {
    position: relative;
    left: 5px;
    font-size: 16px;
    color: #1e3547;
}

.box-right button:hover, .box-right button:focus {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    opacity: 0.9 !important;
    outline: none;
}
.box-right h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 25px;
}
.box-right p {
    margin-top: 25px;
    font-size: 14px;
    color: #1e3547;
}
.box-right p>img {
    width: 13px;
    position: relative;
    top: -2px;
}
.home-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 30px;
}

.box-left {
    padding: 15% 5%;
    text-align: left;
    background: url("../images/—Pngtree—gray wallpaper with abstract geometric_1167198.png");
}
.box-left h1 {
    font-size: 40px;
    color: #2a2a2a;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif !important;
}
.box-left p {
    font-size: 15px;
    width: 80%;
    color: #2a2a2a;
}
.box-left button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-align: center;
    padding: 10px 35px;
    border-radius: 30px;
    transition: all 500ms ease;
    background: transparent;
    margin-left: 6px;
    border: 2px solid var(--color-red);
    color: var(--color-red);
    margin-top: 50px;
    transition: 0.7s all;
}
.box-left button:hover {
    background: var(--color-red) !important;
    color: #fff !important;
}

