* {
    font-family: "Poppins", sans-serif;
}
.wrapper {
    background: #ececec;
    padding: 0 20px 0 20px;
}
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.custom-row {
    width: 1100px;
    height: auto;
    border-radius: 10px;
    background: #fff;
    box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.2);
}
.side-image {
    background-image: url("/assets/img/backgrounds/login_bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px 0 0 10px;
    padding: 35px 20px;
}
img {
    width: 35px;
    position: absolute;
    top: 30px;
    left: 30px;
}
.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.text p {
    color: #fff;
    font-size: 20px;
}
.mtp-1 {
    margin-top: 10px !important;
}

.mbt-1 {
    margin-bottom: 10px !important;
}

.mts-1 {
    margin-top: -10px !important;
}
i {
    font-weight: 400;
    font-size: 17px;
}
.right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px 20px 100px 20px;
}
.input-box {
    min-width: 50px;
    max-width: 400px;
    box-sizing: border-box;
}
.input-box header {
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}
.input-field {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;
}
.input {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    height: 45px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    margin-bottom: 20px;
    color: #40414a;
}
.input-box .input-field label {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: 0.5s;
}
.input-field .input:focus ~ label {
    top: -10px;
    font-size: 13px;
}
.input-field .input:valid ~ label {
    top: -10px;
    font-size: 13px;
    color: #5d5076;
}
.input-field .input:focus,
.input-field .input:valid {
    border-bottom: 1px solid #743ae1;
}
.submit {
    border: none;
    outline: none;
    height: 45px;
    background: #ececec;
    border-radius: 5px;
    transition: 0.4s;
}
.submit:hover {
    background: rgba(37, 95, 156, 0.9);
    color: #fff;
}
.signin {
    text-align: center;
    font-size: small;
    margin-top: 25px;
}
span a {
    text-decoration: none;
    font-weight: 700;
    color: #000;
    transition: 0.5s;
}
span a:hover {
    text-decoration: underline;
    color: #000;
}
@media only screen and (max-width: 992px) {
    .input-box {
        max-width: 330px;
    }
}

@media only screen and (max-width: 768px) {
    .input-box {
        max-width: 400px;
    }
    .side-image {
        border-radius: 10px 10px 0 0;
        padding: 15px 20px;
    }
    .side-image .text-white {
        /* width: 35px; */
        /* position: absolute; */
        top: 15px;
        display: flex;
        /* text-align: center; */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -15px;
        /* justify-content: center; */
    }
    .text {
        position: relative;
        top: 50%;
        text-align: center;
    }
    .text p,
    i {
        font-size: 19px;
    }
    /* .custom-row{
      max-width: 420px;
      width: 100%;
  } */
}
