
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

button[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}
.dashboard - container {
    font - family: 'Arial', sans - serif;
    margin: 20px auto;
    padding: 30px;
    background - color: #fff;
    border - radius: 8px;
    box - shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100 %;
    max - width: 700px;
}

.dashboard - container h1 {
    text - align: center;
    margin - bottom: 25px;
    color: #333;
}

.student - details p {
    margin - bottom: 12px;
    color: #555;
    font - size: 1.1em;
}

.student - details span {
    font - weight: bold;
    color: #333;
}