.log_container{
    height: 100%;
    margin: 0;
    background: url("../images/building.png") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}
.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}
.login-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
}
.login-form h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}
.form-control {
    margin-bottom: 1rem;
}
.btn-primary {
    width: 100%;
}
.text-center a {
    color: #007bff;
    text-decoration: none;
}
.text-center a:hover {
    text-decoration: underline;
}
/* Overall container style */
#application-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/building.png") no-repeat center center fixed;
    background-size: cover;
}

/* Style for the application form container */
#application-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 600px;
}

/* Heading for the welcome text */
#application-form h2 {
    font-size: 2rem;
    color: #333;
}

/* Styling for the alert information box */
#application-form .alert {
    font-size: 1rem;
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

/* Making form fields full-width */
#application-form .form-control {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

/* Submit button styling */
#submitApplicationBtn {
    font-size: 1.1rem;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
}

/* Hover effect for submit button */
#submitApplicationBtn:hover {
    background-color: #0056b3;
}

/* Making dynamic content section fit well */
#dynamicContent {
    margin-top: 20px;
}
.navbar {
    background-color: brown; /* Dark blue background color */
}
.navbar .navbar-brand img {
    max-height: 40px;
}
.navbar-nav .nav-item .nav-link {
    color: white;
}
.navbar-nav .nav-item .nav-link:hover {
    color: #ffcc00; /* Gold color for hover effect */
}
.grade-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px;
}
.grade-box {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #a0522d; /* Brown background */
    color: #fff; /* White text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.grade-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.grade-box p {
    font-size: 1rem;
    margin: 5px 0;
}
.grade-box .grade {
    font-size: 2rem;
    font-weight: bold;
}
.grade-box:hover {
    background: #8b4513; /* Darker brown */
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
