.registration {
    background: url("../Images/Registration/RegistrationBanner.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.regContainer {
    display: flex;
    justify-content: end;
}

.registrationWrapper {
    background: white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.08);
}

    .registrationWrapper .heading h2 {
        color: #000249;
        margin-bottom: 10px !important;
        font-weight: 600;
        padding: 0px 10px;
    }

    .registrationWrapper .heading p {
        padding: 0px 10px;
        color: #c1c1c1;
        margin-bottom: 0px !important;
    }

.regForm {
    padding: 30px 0px;
    width: 50%;
}

    .regForm .row {
        margin: 10px !important;
    }

.inputWrapper {
    padding: 10px;
}

    .inputWrapper .form-control:focus,
    .inputWrapper .form-select:focus {
        background-color: #fff;
        outline: 0;
        box-shadow: none;
        color: #2c3e8a;
        border-color: #2c3e8a;
    }

    .inputWrapper .form-control,
    .inputWrapper .form-select {
        border-radius: 0px !important;
        padding: 10px 20px !important;
        border: 1px solid #e2eef2;
        border-radius: 0;
        outline: none;
        transition: all 0.3s ease;
        font-size: 15px;
        opacity: 0.6;
    }

.btnSubmit {
    padding: 0px 10px;
    display: flex;
    justify-content: center;
}

    .btnSubmit button {
        background-color: #000249;
        color: #fff;
        padding: 10px 18px;
        border: none;
        border-radius: 5px;
    }

/* media queries */

@media (max-width: 576px) {
    .regForm {
        width: 100%;
    }

    .registrationWrapper {
        padding: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .regForm {
        width: 100%;
    }

    .registrationWrapper {
        padding: 10px;
    }

    .regForm {
        padding: 50px 0;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
}

@media (min-width: 1400px) and (max-width: 1920px) {
}
