@font-face {
    font-family: poppins-bold;
    src: url(../../assets/font/Poppins-Bold.ttf);
}

@font-face {
    font-family: poppins;
    src: url(../../assets/font/Poppins-Regular.ttf);
}

*{
    font-family: poppins;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f2f2f2;
    overflow: hidden;
    
}

.container{
    display: flex;
    flex-direction: column;
    width: 100vw;
    overflow: hidden;
}

.inner{
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100vw;
    padding: 90px 0;
}

.inner::before{
    content: '';
    background-color: #002C5C;
    width: 100%;
    height: 380px;
    top: 0;
    position: absolute;
    z-index: -10;
    border-radius: 0 0 50% 50%/ 0 0 100% 100%;
    transform: scalex(1.5);
}

.school{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.school span{
    color: white;
    font-weight: bold;
}

.school #school-name{
    font-size: 17px;
    margin-bottom: 5px;
}

.school #label{
    font-size: 16px;
}

.school img{
    width: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

form{
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 25px 25px;
    box-sizing: border-box;
    width: 75%;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: -1px 5px 8px rgb(179, 178, 178);
    z-index: 10;
}

form span{
    color: #0B2447;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}

form input{
    background-color: #E2E2E2;
    border: none;
    padding: 6px 8px;
    outline: none;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    color: #545454;
    width: 100%;
}

form input[type="email"]::placeholder, input[type="password"]::placeholder, input[type="text"]::placeholder{
    font-weight: 600;
    font-size: 13px;
    padding: 5px;
}

.password{
    position: relative;
    display: flex;
    align-items: end;
    flex-direction: column;
}

.password img{
    top: 0;
    right: 0;
    margin-top: 18px;
    margin-right: 8px;
    width: 20px;
    position: absolute;
    cursor: pointer;
}

.password a{
    text-decoration: none;
    font-size: 12px;
    color: #545454;
    font-weight: 600;
    margin-top: -5px;
}

button{
    background-color: #002C5C;
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px;
    border-radius: 5px;
    margin-top: 15px;
    transition: 0.3s;
    cursor: pointer;
    font-size: 14px;
}

button:hover{
    background-color: #35155d;
}

.remember{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

label{
    display: inline-block;
    color: #545454;
    font-weight: 600;
    margin-left: 10px;
    font-size: 12px;
}

input[type='checkbox']{
    display: grid;
    place-content: center;
    appearance: none;
    height: 16px;
    width: 16px;
    background-color: #E2E2E2;
    cursor: pointer;
}

input[type="checkbox"]::before{
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #002C5C;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  }

  input[type="checkbox"]:checked::before{
    transform: scale(0.9);
  }

  @media only screen and (min-width: 768px) {
    .school #school-name{
        font-size: 20px;
    }
 
    
    form{
        margin-top: 40px;
        width: 30%;
    }

    .password img{
        width: 25px;
        margin-top: 16px;
    }
}
 
 
 .message{
    width: 100%;
    height: 40px;
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2px;
    margin-bottom: 10px;
    background-color: #F09597;
    color: #4F1C1E;
    font-size: 14px;
}

