/* Webpage Design */
* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #e8f0fe;
    color: #222;
    padding: 20px;
    min-height: 100vh;
}

/* Centered container with padding, border-radius, shadow, gradient */
.container {
    width: 800px;
    max-width: 95%;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    padding: 35px 40px 40px;
    margin: 0 auto 60px;
    border-radius: 14px;
    border: 1px solid #d0e4ff;
    box-shadow: 0 10px 30px rgba(0, 80, 180, 0.1);
    transition: box-shadow 0.3s ease;
}

.container:hover {
    box-shadow: 0 15px 35px rgba(0, 80, 180, 0.2);
}

/* Headings */
h1, h2 {
    color: #004da8;
    margin-bottom: 20px;
}

/* Forms */
form {
    background: #fff;
    padding: 15px 20px;
    border: 1px solid #c3d1ff;
    border-radius: 10px;
    margin-bottom: 25px;
}

label {
    display: block;
    margin: 10px 0 6px;
    font-weight: bold;
    color: #004080;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #a3b9ff;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: content-box; /* for compatibility */
}

button {
    margin-top: 15px;
    padding: 10px 18px;
    background-color: #004da8;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #003575;
}

/* University list */
.university-list {
    list-style: none;
    padding-left: 0;
}

.university-list li {
    margin-bottom: 12px;
    padding: 8px 12px;
    background-color: #d9e6ff;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.university-list li:hover {
    background-color: #a3b9ff;
}

/* Links */
a {
    color: #003575;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Footer with attribution */
footer {
    text-align: center;
    font-size: 0.85em;
    color: #666;
    margin-top: 60px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
