body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f2f2f2;
    background: linear-gradient(to right, #090979, #8fc2fc,#090979);
    justify-content: center; 
    display: flex;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.cont{
    
    border-radius: 10px;
    text-align: center; 
    width: 50%;
    margin: 50px auto;
    padding: 20px;
    background-color: #dfe6ef;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}

h2 {
    margin-bottom: 25px;
    text-align: center;
    color: #1b2288;
    
}

.formgrp{
    margin-bottom: 20px;
    text-align: left;
    
}
label {
    display: inline-block;
    margin-bottom: 8px;
    color: #333;
    text-align: center;
}

input[type="email"],
input[type="password"]{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"]{
    width: 100%;
    padding: 12px;
    background-color: #0e63c5;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    }

    input[type="submit"]:hover{
        background-color: #F59E0B;
    }