@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*,*::after,*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    font-size: 16px;
    scroll-behavior: smooth;
}

body{
    background: #fff;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
.container-fluid{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.row-wrapper{
    height: 100%;
    width: 100%;
}
.col-md-4{
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.logo{
    height: auto;
    width: 50%;
    margin-bottom: 3rem;
}
.illsutration{
    height: auto;
    width: 60%;
}
.col-md-8{
    background: #F8F8F8;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.nairaglobalschool{
    color: #2E1FDE;
}
.area{
    font-size: 1.25rem;
}
.form-container{
    max-width: 30rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    background: #FFF;
    box-shadow: -4px 4px 10px 0px rgba(0, 0, 0, 0.10);
    padding: 1.5rem 1rem;
}
.login-inputs{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1rem;
}
.input-field{
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}
label{
    font-size: 1rem;
    color: #5A5A5D;
    margin-bottom: 0.1rem;
    font-weight: 700;
}
input{
    border-radius: 0.1875rem;
    border: 1px solid #BEBEBF;
    height: 3rem;
    padding-left: .5rem;
}
:-ms-input-placeholder { 
    color: #BEBEBF;
    padding-left: .3rem;
}
.submit{
    border-radius: 0.1875rem;
    background: #2E1FDE;
    border: 2px solid #2E1FDE;
    color: #fff;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.ip{
    color: #2E1FDE;
}
.resttoken{
    text-decoration: none;
    color: #000;
    cursor: pointer;
}
.resttoken:hover{
    text-decoration: underline;
    color: #f00;
}
.submit:hover{
    background: #fff;
    color: #2E1FDE;
    border: 2px solid #2E1FDE;
}

.end-credits{
    font-size: 0.75rem;
    color: #5A5A5D;
    margin-top: 1.5rem;
}

/*Media Queries for mobile phones*/

@media screen and (max-width: 768px){

    body{
        height: max-content;
        background-color: #F8F8F8;
    }
    .illsutration{
        display: none;
    }
    .col-md-4{
        padding: 1.5rem 1rem!important;
    }
    .col-md-8{
        width: 100%;
        padding: 1.5rem 1rem!important;
    }
    .nairaglobalschool{
        text-align: center;
        font-size: 1.5rem;
        width: 100%;
    }

   .logo{
    margin-bottom: 0;
    width: 50%;
    height: auto;
   }
    .area{
        font-size: .9rem;
        margin-top: -.3rem;
    }
    .end-credits{
        font-size: 0.75rem;
    }
    .submit{
        width: 100%;
    }
    .input-field{
        width: 100%;
    }
    .login-inputs{
        width: 100%;
    }
    .resttoken{
        font-size: 0.75rem;
    }
    .ip{
        font-size: 0.75rem;
    }
    .form-container{
        max-width: 100%;
        padding: 1rem 1rem;
        margin-bottom: 1.5rem;
    }
    .end-credits > p{
        margin-top: 1rem;
        text-align: center;
    }
}
