* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.login {
    width: 360px;
    height: min-content;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    
    border-radius: 8px; /* Add rounded corners for a nicer look */
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    padding: 20px; /* Add some padding for spacing */
}

.login h1 {
    font-size: 36px;
    margin-bottom: 25px;
}

.login form {
    font-size: 20px;
}

.login form .form-group {
    margin-bottom: 12px;
}

.login form input[type="submit"] {
    font-size: 20px;
    margin-top: 15px;
}
.btn-primary2:hover{
    background-color: rgb(111, 178, 204);
  }
/* Additional styles for the spinner and overlay */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 9998; /* Place the overlay below the modal but above other elements */
    display: none; /* Hide the overlay by default */
    }

    .spinner-border-xl {
    width: 4rem;
    height: 4rem;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    display: none; /* Hide the spinner by default */
    }