* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.corporate-login-wrapper {
    min-height: 100vh;
    padding: 90px 0;
    background-image: url(../img/login/corporate-back-image.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.corporate-login-cover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    background-color: white;
    /* background-image: url(../img/login/corporate-back-banner-image.png);
    background-size: 90% 100%;
    background-repeat: no-repeat; */
    border-radius: 20px;
    padding: 50px;
    width: 75%;
    margin: 0 auto;
}

.right-img img {
    border-radius: 10px 0 0px 10px;
    width: 75%;
}

.btn-1 {
    background-color: rgb(132 190 84);
    color: white;
    border: none;
    padding: 10px 35px;
    border-radius: 7px;
}

.corporate-header h3 {
    margin-bottom: 40px;
    font-weight: 600;
    color: rgb(139 190 69);
}

.parsley-errors-list {
    padding-left: 0px;
    list-style: none;
    margin-top: 4px;
    font-size: 13px;
    color: red;
}

.login-form input {
    padding: 20px 10px;
    border-radius: 10px;
}

.login-form {
    padding: 30px;
    /* margin-left: -60px; */
    background-color: white;
    border-radius: 15px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

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

.forgot a {
    text-decoration: none;
    color: black;
    font-size: 15px;
}

.form-check-label {
    font-size: 16px;
}

@media screen and (max-width:991px) {
    .right-img img {
        border-radius: 0px 0px 0px 10px;
    }

    .login-form {
        padding: 40px 13px;
    }

    .corporate-login-wrapper {
        margin-top: 0;
    }
}

@media screen and (max-width:500px) {
    .login-form {
        padding: 70px 13px;
    }

    .corporate-login-cover {
        padding: 20px;
        width: 100%;
    }
}