College Admissions Data

body { font-family: Arial, sans-serif; background-color: #f4f4f4; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .form-container { background-color: white; border: 2px solid #ccc; border-radius: 8px; padding: 20px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); width: 300px; } h1 { text-align: center; } label { margin-top: 15px; display: block; } input[type="text"], input[type="number"], select { width: 100%; padding: 10px; margin-top: 5px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; } input:focus { border-color: #007BFF; outline: none; } button { background-color: #007BFF; color: white; border: none; border-radius: 4px; padding: 10px; font-size: 16px; /* Making text size larger */ cursor: pointer; width: 100%; } button:hover { background-color: #0056b3; }