﻿.login-container{
    height:85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ECEEF1;
}
.login-form{
    width: 35%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 20px 30px;
    border-radius:5px;
    margin:auto;
}
.login-title{
    color: #27A4B0;
    font-size:25px;
    font-weight:600;
}
.form-group{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 5px;
    width: 80%;
}
.form-label{
    color: #B3B4B5;
    padding: 5px;
    font-size: 15px;
}
.form-group-btn{
    display: flex;
    align-items: center;
    justify-content:space-between;
    padding:3px 5px;
    width: 80%;
    margin-bottom: 30px;
    margin: 4px;
}
.form-control-login{
    padding: 12px;
   
    width: 100%;
    border: 1px solid #d6d8da;
     border-radius: 5px; 
}
.form-control-login::placeholder{
    font-weight: 100;
    font-size: 14px;
    color: #B3B4B5;
}
.btn-success{
    background: #27A4B0;
    color: white;
    outline: none;
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 4px;
}
.btn-success:hover{
    background: #2ef2f2;
}
.forggot-password{
    text-decoration: none;
    font-size: 14px;
    /* font-family: ; */
}

.admission-container{
    display:flex;
    flex-direction:column;
    width:90%;
    margin:auto;
}
@media screen and (max-width:768px){
    .login-container {
        height:70vh;
        align-items:center;
        justify-content:space-around;
    }
    .login-form{
        width:80%;
        margin:auto;
        border-radius:5px;
    }
    .form-group{
        width:100%;
    }
    .form-control-login{
        width:100%;
    }
    .top{
        display:none;
    }
}