body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: azure;
}

input[type = "text"],
input[type = "number"],
input[type = "tel"],
input[type = "email"],
input[type = "url"],
select,
input[type = "date"]{
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
    margin-bottom: 5px;
    width: 95%;
}
input:focus{
    border-color: #007bff;
}
button{
    width: 80px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease
}
form{
    max-width: 400px;
    box-shadow: 0px 0px 10px rgba(50, 148, 214, 0.1);
    padding: 10px;
    border-radius: 15px;
    background-color: #fff;
}
div{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: left;
}

textarea{
    
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}