
body{
    font-family: Arial, sans-serif;
    min-height:100vh;
    margin:0;

    /* BACKGROUND IMAGE */
    background: 
        linear-gradient(rgba(20,106,235,0.65), rgba(20,106,235,0.65)),
        url('/mnt/data/Tata Power_VB_C.jpg') no-repeat center center fixed;

    background-size: cover;
    display:flex;
    align-items:center;
    justify-content:center;
}

.box{
    width:320px;
    background:#ffffff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

/* INPUTS */
input,button{
    width:100%;
    margin:8px 0;
    padding:10px;
    border-radius:6px;
    border:1px solid #ccc;
}

/* BUTTON */
button{
    background:#146aeb;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:15px;
}
button:hover{
    background:#0f57c4;
}
