 body {
     font-family: sans-serif;
 }


 .login-section {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: stretch;
     min-height: 100vh;
     background-color: #f5f7fa;
 }

 .login-form {
     flex: 1;
     min-width: 300px;
     max-width: 500px;
     padding: 3rem;
     background-color: #ffffff;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .login-form h2 {
     /* color: #012169; */
     color: #e53935;
     margin-bottom: 1.5rem;
     text-align: center;
 }

 .login-form p {
     text-align: center;
     /* font-size: small; */
 }

 .login-form label {
     display: block;
     margin-top: 1rem;
     /* font-weight: bold; */
     color: #333;
     font-size: small;
 }

 .login-form input,
 select {
     width: 100%;
     padding: 0.75rem;
     margin-top: 0.5rem;
     border: 1px solid #ccc;
     border-radius: 5px;
 }

 .form-links {
     margin-top: 1rem;
 }

 .form-links a {
     color: #012169;
     text-decoration: none;
     font-size: 0.9rem;
 }

 button[type="submit"] {
     margin-top: 1.5rem;
     padding: 0.75rem;
     /* background-color: #012169; */
     background-color: #e53935;
     color: #fff;
     border: none;
     border-radius: 5px;
     font-weight: bold;
     cursor: pointer;
     width: 100%;
 }

 .fixed-box {
     width: 100%;
     height: 90px;
     resize: none;
     overflow: auto;
     padding: 10px;
     font-size: 14px;
     border: 1px solid #1f2937;
     border-radius: 8px;

 }

 .signup-text {
     margin-top: 1rem;
     font-size: 0.9rem;
 }

 .signup-text a {
     color: #012169;
     text-decoration: none;
     font-weight: bold;
 }

 .footer-links {
     margin-top: 2rem;
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .footer-links a {
     color: #012169;
     font-size: 0.85rem;
     text-decoration: none;
 }

 .login-illustration {
     flex: 1;
     min-height: 100%;
     background-image: url("images/illustration.png");
     /* Replace with your actual image path */
     background-size: cover;
     background-position: center;
 }

 .login-form .copyright {
     margin-top: 2rem;
     font-size: 0.75rem;
     color: #666;
 }