body{
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #d3e5ff, #f0f4ff);
    margin: 0;
    min-height: 100vh;
}
h1{
    text-align: center;
}

.container{
    width: 40%;
    margin: auto;
    background-color: #f9fbfc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 1px 0px 30px #a6a2ce
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"],
input[type="number"],
input[type="file"],
textarea{
    margin:10px 0;
    width: 100%;
    height: 25px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea{
    height: 60px;
}   

label{
    font-size: 14px;
    font-weight: 700;
}

button{
    width: 100%;
    margin-bottom: 20px;
    height: 40px;
    background-color: #3f46b5;
    color: white;
    border: 1px solid #163017;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover{
    background-color: #45a049;
}