html, body {
    height: 100%; /* Make sure the body takes up the full viewport height */
    margin: 0;    /* Remove default margin */
    display: flex; /* Apply Flexbox to body */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 100%;
  }
/* Login Form Container */
.login-container {
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    width: 40%;
    min-width: 150px;
    max-width: 300px;
    text-align: center;
    margin-bottom: 10em;
}
@media only screen and (max-height: 600px) {
    .login-container {
        margin-bottom: 0px;
    }
  }
/* Heading */
h2 {
    color: #2a3d66;
    margin-bottom: 20px;
}

/* Input Groups */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #2a3d66;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Button Styling */
.btn {
    width: 100%;
    padding: 10px;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2980b9;
}