body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f3f4f7; /* Light background for contrast */
}

/* Student Container Styling */
.student-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    position: relative;
    background: #ffff; /* Semi-transparent white background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden; /* Ensure content stays inside rounded corners */
}

/* Title Styling */
.student-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff; /* Bright blue */
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Form Styling */
.verification-form {
    text-align: left;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}