@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
html{
    height: 100%;
}

body{
    background-image: url("../images/bg_shape.png");
    background-size: 100% 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.login-page{
    background-color: white;
    border: 1px solid #DBDBDB;
    border-radius: 15px;
    padding: 33px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.login-button{
    width: 100%;
    margin-top: 37px;
    background-color: white;
    color: #5A96E3;
    border-radius: 5px;
    border-color: #5A96E3;
    font-size: 20px;
}

.login-button:hover{
    background-color: #5A96E3;
    color: white;
    border-color: #5A96E3;
}

.forgot-password a{
    color: black;
    font-size: 14px;
    text-decoration: none;
    display: flex;   
}

.forgot-password{
    justify-content: flex-end;
}

.forgot-password a:hover{
    text-decoration: underline;
    color:#5A96E3;
    text-decoration: none;
}

p{
    color: #8A8A8A;
    font-size: 16px;
}

h1{
    font-size: 32px !important;
}

label{
    font-size: 16px;
}

input::placeholder{
    font-size: 14px;
}

p,h1,label,input, .forgot-password{
    font-family: 'Poppins', sans-serif;
}

form{
    margin-top: 37px;
}