@font-face {
    font-family: "ChelseaMarket-Regular";
    src: url("../fonts/chelsea_market/ChelseaMarket-Regular.ttf");
}

@font-face {
    font-family: "Muli-Regular";
    src: url("../fonts/muli/Muli-Regular.ttf");
}

@font-face {
    font-family: "Muli-SemiBold";
    src: url("../fonts/muli/Muli-SemiBold.ttf");
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Muli-Regular";
    font-size: 15px;
    margin: 0;
    color: #000000;
}

input, textarea, select, button {
    font-family: "Muli-SemiBold";
}

p, h1, h2, h3, h4, h5, h6, ul {
    margin: 0;
}

img {
    max-width: 100%;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

:focus {
    outline: none;
}

.wrapper {
    min-height: 100vh;
    display: flex;
}

    .wrapper .image-holder {
        width: 69.9%;
    }

    .wrapper .form-inner {
        width: 30.1%;
    }

.image-holder {
    background: url("../Images/registrationform.jpg") no-repeat;
    background-size: cover;
}
/*
    .image-holder img {
        display: none;
    }*/

.form-inner {
    background: #ffffff;
    padding-top: 10.36vh;
    padding-left: 4vw;
    padding-right: 3vw;
    -webkit-box-shadow: -28px 17px 94px -43px #8BC34A;
}

form {
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 39px;
}

/*
h3 {
  text-transform: uppercase;
  font-size: 40px;
  font-family: "ChelseaMarket-Regular"; }
*/

h3 {
    font-size: 26px;
}


label {
    margin-bottom: 11px;
    display: block;
}

.form-group {
    margin-bottom: 26px;
    position: relative;
}

.form-control {
    /*  border: 1px solid #7dfc03;*/
    border: 1px solid #2c8161;
    border-radius: 5px;
    /*  display: block;*/
    width: 98%;
    height: 45px;
    background: none;
    padding: 0 19px;
    color: #000000;
    font-size: 17px;
    font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

    .form-control.error {
        border-color: #fd677a !important;
        color: #fd677a;
        background: url("../images/error.png") no-repeat center right 19px;
    }

    .form-control.valid {
        background: url("../images/valid.png") no-repeat center right 19px;
    }

.form-error {
    margin-top: 10px;
    display: inline-block;
}

button {
    border: none;
    width: 100%;
    height: 46px;
    border-radius: 22.5px;
    margin: auto;
    margin-top: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #2c8161;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    overflow: hidden;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

    button:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fd677a;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    button:hover {
        color: white;
        
    }

        button:hover:before {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }
#btnLogin {
    border: none;
    width: 100%;
    height: 46px;
    border-radius: 22.5px;
    margin: auto;
    margin-top: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #2c8161;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    overflow: hidden;
    font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#btnLogin:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fd677a;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

    #btnLogin:hover {
        color: white;
        background: #055738;
    }

    #btnLogin:hover:before {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
.socials {
    text-align: center;
    margin-top: 59px;
}

.socials-icon {
    display: inline-flex;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 19px;
    color: #2c8161;
    transition: all 0.5s ease;
    margin-right: 19px;
}

    .socials-icon:hover {
        background: #fff;
        border: 1px solid transparent;
        color: #ff97a4;
    }

    .socials-icon:last-child {
        margin-right: 0;
    }

p {
    font-family: "Muli-SemiBold";
    color: #2d2d2b;
    margin-bottom: 22px;
}

@media (max-width: 1500px) {
    .form-inner {
        display: block;
        align-items: center;
        padding-top: 0;
        padding-left: 4vw;
        padding-right: 4vw;
    }
}

@media (max-width: 1199px) {
    .wrapper {
        /*flex-direction: column;*/
    }

        .wrapper .image-holder {
            width: 100%;
            height: 45vh;
            display:none;
        }

        .wrapper .form-inner {
            width: 100%;
            /*height: 100vh;*/
        }

    .form-inner {
        padding-left: 20vw;
        padding-right: 20vw;
    }

    button {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .wrapper .image-holder {
        height: 100%;
    }

    .wrapper .form-inner {
        /*height: 63vh;*/
    }

    .socials {
        margin-top: 40px;
    }

    .form-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .wrapper .form-inner {
        height: auto;
    }


    .wrapper .image-holder {
        height: auto;
        display: none;
    }

    .image-holder img {
        display: block;
    }

    .form-inner {
        padding: 30px 20px;
    }

    button {
        width: 100%;
    }
}

.smartschool {
    width: 200px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 38px;
}

placeholder {
    color: aliceblue;
}

.fgt-pswd {
    text-align: center;
    padding-top: 39px;
}


    .fgt-pswd a {
        color: #E91E63;
    }

input {
    color: #000;
    border: #000;
}

.bi-eye-slash:hover {
    color: #e91e63;
}

.login-head {
    font-size: 22px;
    font-weight: 400;
    color: #ff576c;
}

.pointer {
    cursor: pointer;
}
.no-drop {
    cursor: no-drop;
}
.app {
    display: inline-flex;
   /* width: 87px;
    height: 41px;*/
    border-radius: 50%;
    align-items: center;
     /*border: 1px solid rgba(255, 255, 255, 0.5);
     font-size: 19px;
     color: #2c8161;
     transition: all 0.5s ease;*/
    margin-right: 10px;
}

@media (max-width: 767px) {
    .app {
        width: 86px;
    }
}

.grid {
    text-align: center;
    margin-top: 40px;
}


.shrink {
    transition: 1s ease;
}

    .shrink:hover {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
        transition: 1s ease;
    }
.quotes {
    padding: 62px 45px 62px 99px;
    line-height: 46px;
    font-weight: 700;
    color: black;
    text-shadow: 4px 4px 28px rgb(255 255 255);
    font-size:25px;
}

@media (max-width: 767px) {
    .quotes {
        display: none;
    }
}