*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background: #F0F9FF;
    font-family: 'Poppins', sans-serif;
}

.heading{
    text-align: center;
    margin: 7rem 0 5rem 0;
    font-weight: 500;
    font-size: 2rem;
}

#loginForm{
    position: relative;
    transform: translateX(-50%);
    left: 50%;
    background: #fff;
    width: 35rem;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    padding: 2rem;
    margin-top: -2rem;
}

label{
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: -0.9rem;
    color: rgb(26, 26, 26);
}

input{
    border: 1px solid #0000009a;
    outline: none;
    color: #000;
    padding: 0.8rem;
    font-size: 1.05rem;
    border-radius: 0.2rem;
    font-weight: 400;
}

button{
    border: none;
    outline: none;
    background: #1a63d1dc;
    color: #fff;
    border-radius: 6px;
    font-size: 1.2rem;
    padding: 0.8rem;
    cursor: pointer;
    transition: 0.2s all;
}

button:hover{
    background: #1a63d1;
}

.logo{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 8rem;
    width: 12rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 600px) {
    #loginForm{
        width: 90%;
    }
}