 body {
     font-family: Arial, sans-serif;
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 100vh;
     margin: 0;
     background-color: #f4f4f4;
 }

 .signup-container {
     background-color: white;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     width: 300px;
     text-align: center;
 }

 h2 {
     margin-bottom: 20px;
     color: #333;
 }

 .form-group {
     margin-bottom: 15px;
     text-align: left;
 }

 .form-group label {
     display: block;
     margin-bottom: 5px;
     font-weight: bold;
 }

 .form-group input {
     width: 100%;
     padding: 10px;
     border: 1px solid #ccc;
     border-radius: 4px;
     box-sizing: border-box;
    background-color: #ffffff;
    color: #111;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.15);
 }

 button {
     width: 100%;
     padding: 10px;
     background-color: #28a745;
     /* Green color for Sign Up */
     color: white;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     font-size: 16px;
     margin-top: 10px;
 }

 button:hover {
     background-color: #1e7e34;
 }

 .login-link {
     margin-top: 20px;
     font-size: 14px;
     color: #555;
 }

 .login-link a {
     color: #007bff;
     text-decoration: none;
 }

 .login-link a:hover {
     text-decoration: underline;
 }