@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");
body {
    font-family: "Poppins", sans-serif;
    background: #f2f9ff;
    margin: 0;
    padding: 0;
}
*,
::after,
::before {
    box-sizing: border-box;
}
.login {
    width: 88%;
    height: 80vh;
    max-width: 1600px;
    margin: 10vh auto;
    border-radius: 25px;
    display: flex;
    background: url(/images/login-img.jpg) top left;
    background-size: auto 100%;
    position: relative;
    -webkit-box-shadow: 0 0 30px rgb(70 140 181 / 10%);
    -moz-box-shadow: 0 0 30px rgb(70 140 181 / 10%);
    box-shadow: 0 0 30px rgb(70 140 181 / 10%);
}
.login:after {
    position: absolute;
    content: "";
    width: 75%;
    border-radius: 0 24px 24px 0;
    height: 100%;
    top: 0;
    right: 0;
    background: url(/images/login-bg.png);
    background-size: 100% 100%;
}
.login-box {
    padding: 30px 80px;
    width: 43%;
    overflow: auto;
    display: flex;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
    .login-box img {
        /*width: 150px;*/
        width: 100px;
    }
.login-box h1 {
    font-weight: 400;
    font-size: 26px;
    line-height: 32px;
    color: #043866;
    padding: 15px 0 30px 0;
    margin: 0;
}
.login-box label {
    position: relative;
    width: 100%;
    display: block;
    margin: 0 0 15px 0;
}
.login-box label svg {
    position: absolute;
    right: 12px;
    top: 15px;
    color: #d6d8db;
    font-size: 15px;
}
.login-box label input {
    width: 100%;
    height: 50px;
    padding: 10px 30px 10px 12px;
    border: none;
    border-bottom: 1px solid #dddddd;
    border-radius: 10px;
    font-size: 16px;
    color: #555;
    outline: none;
}
.login-box label select {
    width: 100%;
    height: 50px;
    padding: 10px 30px 10px 10px;
    border: none;
    border-bottom: 1px solid #dddddd;
    font-size: 16px;
    color: #555;
    background-color: #f5faff;
    border-radius: 10px;
    outline: none;
}
.custom-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 99%;
    background-position-y: 12px;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    margin-right: 2rem;
    /* padding: 1rem; */
    padding-right: 2rem;
    padding-left: 10px;
}
.login-box .login-btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.login-box .login-btn-group a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    color: #1a4164;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}
.login-box .login-btn-group a:hover {
    color: #0c6abd;
}
.login-box input[type="submit"] {
    background: #0b589b;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 40px;
    padding: 0 40px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}
.login-box ::-webkit-input-placeholder {
    color: #adb2b8;
}
.login-box ::-moz-placeholder {
    color: #adb2b8;
}
.login-box :-ms-input-placeholder {
    color: #adb2b8;
}
.login-box :-moz-placeholder {
    color: #adb2b8;
}
.login-box input[type="submit"]:hover {
    background: #0c6abd;
}
@media (max-width: 1200px) {
    .login {
        background: #ffffff;
    }
    .login:after {
        background: url(/images/login-bg-2.png) no-repeat top right;
        background-size: 240px auto;
    }
    .login-box img {
        margin: 0 auto;
        display: block;
    }
    .login-box {
        text-align: center;
    }
    .login-box {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .login {
        width: 95%;
        height: 90vh;
        max-width: 1600px;
        margin: 5vh auto;
    }
    .login-box img {
        width: 120px;
        margin: 0 auto;
        display: block;
    }
    .login-box {
        padding: 30px;
    }
    .login-box h1 {
        font-size: 20px;
        line-height: 26px;
    }
}

