/*=========================================================================================
DESIGN AND DEVELOPED BY :  Gaurav Kalbande
=========================================================================================*/
:root {
    --bs-darkblue : #2e66a6;
}

body {
    background: url("../../../image/background.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.college-address p {
    font-size: 0.8rem;
}

.form-group {
    position: relative;
}

.btn-primary {
    background-color: var(--bs-darkblue);
}

.default-form-header::after {
    content: '';
    display: block;
    height: 2px;
    border-radius: 4px;
    background-color: var(--bs-darkblue);
    width: 30%;
}

.input-prefix {
    position: absolute;
    top: 67%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    color: var(--bs-gray-500);
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.bi-phone.input-prefix {
    top: 60%;
}

.bi-calendar.input-prefix {
    font-size: 0.7rem;
}

.password-prefix {
    position: absolute;
    top: 75%;
    right: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    color: var(--bs-gray-500);
    font-size: 1rem;
    z-index: 1;
}

@media (max-width: 991px) {
    body {
        background: var(--bs-white);
    }
}
