* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    background: #f5f2ee;
}

.login-page {
    width: 100%;
    height: 100vh;
    background: #f5f2ee !important;
}

.row {
    height: 100vh;
}

/*======================
Left Section
=======================*/

.left-wrapper {
    height: 100vh;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
}

.top-card,
.middle-card,
.bottom-card {
    /*flex: 1;*/
    border-radius: 28px;
    overflow: hidden;
}

.top-card,
.bottom-card {
    width: 75%;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
}

.top-card img,
.bottom-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.middle-card img{
   width: 100%;
    height: 500px !important;
    object-fit: cover;
    /*display: block;  */
}
/*======================
Right Section
=======================*/

.login-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 90px;
    /*background: #ffffff;*/
    border-left: 1px solid #A9A9A9;
}

.logo img {
    width: 170px;
}
.logoLast img{
    width:80px !important;
}

.login-wrapper h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    font-family: Nunito;
}

.login-wrapper p {
    color: #000;
    font-size: 16px;
    margin-bottom: 40px;
    font-family: Inter;
    font-weight: 400;
}

/*======================
Inputs
=======================*/

.form-control {
    height: 58px;
    border-radius: 30px;
    border: 1px solid #111;
    padding: 0 20px;
    font-size: 15px;
    box-shadow: none;
    background: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

/*======================
Forgot Password
=======================*/

.text-end a {
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.text-end a:hover {
    color: #0d6efd;
}

/*======================
Buttons
=======================*/

.login-wrapper .btn {
    height: 56px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    background: #000;
    color: #fff;
}
.forgottenPassword a{
    color: #000;
    font-weight: 500;
    font-family: Inter;
    font-size: 14px;
    text-decoration: none;
}
.createNewAccount{
    border: 1px solid #000;
    color: #000 !important;
    background: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}
.btn-primary {
    background: #1f5eff;
    border: none;
}

.btn-primary:hover {
    background: #0d4be3;
}

.btn-outline-primary {
    border: 2px solid #1f5eff;
    color: #1f5eff;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #1f5eff;
    color: #fff;
}

/*======================
Responsive
=======================*/

@media (max-width:991px){

.left-wrapper{
    display:none;
}

.login-wrapper{
    padding:40px 30px;
}

.login-wrapper h2{
    font-size:34px;
}

.logo img{
    width:140px;
}
}


body{
    overflow:auto;
}

.login-page,
.row,
.login-wrapper{
    height:auto;
    min-height:100vh;
}

}