﻿.registration-bg {
    background: rgb(63,59,124);
    background: linear-gradient(90deg, rgba(63,59,124,1) 0%, rgba(0,211,255,1) 66%, rgba(106,223,246,1) 100%);
}

.registration-block {
    background: #ffffff;
    border-radius: 13px;
}

.blue-bg {
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
}

img {
    width: 100%;
}

.student-reg {
    border-radius: 10px;
    padding: 10px;
}

.stu-heading {
    background: #27d27d;
    padding: 10px;
    box-shadow: 0 8px 6px -6px black;
    border-radius: 10px;
    margin-bottom: 30px;
    color: #fff;
    height: 49px;
    line-height: 49px;
}

.heading-font {
    font-size: 20px;
}

.note {
    text-align: center;
    height: 80px;
    background: -webkit-linear-gradient(left, #0072ff, #8811c5);
    color: #fff;
    font-weight: bold;
    line-height: 80px;
}

.form-content {
    padding: 5%;
    border: 1px solid #ced4da;
    margin-bottom: 2%;
}

.form-control {
    border-radius: 1.5rem;
}

.btnSubmit {
    border: none;
    border-radius: 1.5rem;
    padding: 1%;
    width: 30%;
    cursor: pointer;
    background: #0062cc;
    color: #fff;
    margin-top: 20px;
    height: 48px;
    line-height: 35px;
    font-size: 25px;
}

.radiotextsty {
    color: #A5A4BF;
    font-size: 18px;
}

.customradio {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .customradio input {
        /*position: absolute;*/
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #BEBEBE;
}

/* On mouse-over, add a grey background color */
.customradio:hover input ~ .checkmark {
    background-color: transparent;
}

/* When the radio button is checked, add a blue background */
.customradio input:checked ~ .checkmark {
    background-color: white;
    border: 1px solid #BEBEBE;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.customradio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.customradio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #A3A0FB;
}

/* Custom Radio Button End*/

label.radioreg {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #000;
}


.bodycap {
    margin: 0;
    background-image: url(https://www.google.com/recaptcha/intro/images/hero-street-bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

.captcha {
    background-color: #f9f9f9;
    border: 2px solid #d3d3d3;
    border-radius: 5px;
    color: #4c4a4b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
}

@media screen and (max-width: 500px) {
    .captcha {
        flex-direction: column;
    }

    .text {
        margin: .5em !important;
        text-align: center;
    }

    .logo {
        align-self: center !important;
    }

    .spinner {
        margin: 2em .5em .5em .5em !important;
    }

    .form-group {
        margin-bottom: 1rem;
        margin-left: 20px;
    }
}

@media screen and (max-width: 900px) {

    .form-group {
        margin-bottom: 1rem;
        margin-left: 20px;
    }

    .stu-heading {
        background: #27d27d;
        padding: 10px;
        box-shadow: 0 8px 6px -6px black;
        border-radius: 10px;
        margin-bottom: 30px;
        color: #fff;
        height: 49px;
        line-height: 49px;
        width: 96%;
    }

    .btnSubmit {
        border: none;
        border-radius: 1.5rem;
        padding: 1%;
        width: 60%;
        cursor: pointer;
        background: #0062cc;
        color: #fff;
        margin-top: 20px;
        height: 48px;
        line-height: 35px;
        font-size: 25px;
    }
}

.text {
    font-size: 1.75em;
    font-weight: 500;
    margin-right: 1em;
}

.spinner {
    position: relative;
    width: 2em;
    height: 2em;
    display: flex;
    margin: 2em 1em;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"] {
    /*position: absolute;*/
    /*opacity: 0;*/
    z-index: -1;
}

    input[type="checkbox"] + .checkmark {
        display: inline-block;
        width: 2em;
        height: 2em;
        background-color: #fcfcfc;
        border: 2.5px solid #c3c3c3;
        border-radius: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

        input[type="checkbox"] + .checkmark span {
            content: '';
            position: relative; /*
	position:absolute;
	border-bottom:3px solid;
	border-right:3px solid;
	border-color:#029f56;*/
            margin-top: -3px;
            transform: rotate(45deg);
            width: .75em;
            height: 1.2em;
            opacity: 0;
        }

        input[type="checkbox"] + .checkmark > span:after {
            content: '';
            position: absolute;
            display: block;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #029f56;
        }

        input[type="checkbox"] + .checkmark > span:before {
            content: '';
            position: absolute;
            display: block;
            width: 3px;
            bottom: 0;
            right: 0;
            background-color: #029f56;
        }

    input[type="checkbox"]:checked + .checkmark {
        animation: 2s spin forwards;
    }

        input[type="checkbox"]:checked + .checkmark > span {
            animation: 1s fadein 1.9s forwards;
        }

            input[type="checkbox"]:checked + .checkmark > span:after {
                animation: .3s bottomslide 2s forwards;
            }

            input[type="checkbox"]:checked + .checkmark > span:before {
                animation: .5s rightslide 2.2s forwards;
            }

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bottomslide {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes rightslide {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    align-self: flex-end;
    /*margin:0.5em 1em;*/
}

    .logo img {
        height: 2em;
        width: 2em;
    }

    .logo p {
        color: #9d9ba7;
        margin: 0;
        font-size: 1em;
        font-weight: 700;
        margin: .4em 0 .2em 0;
    }

    .logo small {
        color: #9d9ba7;
        margin: 0;
        font-size: .8em;
    }

@keyframes spin {
    10% {
        width: 0;
        height: 0;
        border-width: 6px;
    }

    30% {
        width: 0;
        height: 0;
        border-radius: 50%;
        border-width: 1em;
        transform: rotate(0deg);
        border-color: rgb(199,218,245);
    }

    50% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        border-width: 4px;
        border-color: rgb(199,218,245);
        border-right-color: rgb(89,152,239);
    }

    70% {
        border-width: 4px;
        border-color: rgb(199,218,245);
        border-right-color: rgb(89,152,239);
    }

    90% {
        border-width: 4px;
    }

    100% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        transform: rotate(720deg);
        border-color: transparent;
    }
}

::selection {
    background-color: transparent;
    color: teal;
}

::-moz-selection {
    background-color: transparent;
    color: teal;
}

.select-gap {
    margin-left: 5px;
}

.form-check-inline2 {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 5.75rem;
}
