/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-image: url("./img/imgg.jpg");
    background-repeat: no-repeat; /* Prevent the background image from repeating */
    background-size: cover; /* Make the background image cover the entire screen */
    background-position: center; /* Center the background image */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}


/* Styling for the University Logo */
img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

/* Form Title */
h1 {
    text-align: center;
    font-size: 40px;
    color: #eb7c7c;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    background-color: #b1c3da;
    padding: 20px 30px;
    border: 2px solid #0a0a0a;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Label Styling */
label {
    display: block;
    font-size: 16px;
    color: #3b5e6e;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Input Fields Styling */
input[type="text"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Button Styling */
button {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 480px) {
    form {
        padding: 15px 20px;
    }
    h1 {
        font-size: 20px;
    }
}
