body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}

.form-grid {
display: grid;
grid-template-columns: 1fr;
grid-gap: 15px;
padding: 20px;
border: 2px solid #ccc;
border-radius: 8px;
background-color: #fff;
width: 300px; /* Adjust width as needed */
}

label {
font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}

.submit-button {
cursor: pointer;
width: 100px; /* Adjust size as needed */
margin-top: 10px;
}