body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f9; /* Light gray background */
    font-family: Arial, sans-serif;
    overflow: hidden
}

.login-container {
    display: flex;
    flex-direction: column;
    background-color: #fff; /* White background for the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    width: 300px; /* Fixed width for the form */
}

h1 {
    text-align: center;
    margin-bottom: 20px; /* Space between title and form */
    color: #333; /* Dark gray for the title */
}

p1 {
    text-align: center;
    margin-bottom: 20px; /* Space between title and form */
    color: #333; /* Dark gray for the title */
    align-self: center;
}

.bn {
    width: 40%; /* Full width button */
    padding: 10px;
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px; /* Larger font size for the button */
    align-self: center;
    margin-bottom: 10px; /* Space between buttons */
}

.bn:hover {
    background-color: #0660c2; /* Darker shade on hover */
}

.inputfield {
    width: 80%; /* Full width input fields */
    padding: 10px;
    margin-bottom: 15px; /* Space between input fields */
    border: 3px solid #ccc; /* Light gray border */
    border-radius: 30px; /* Rounded corners for input fields */
    font-size: 16px; /* Larger font size for input fields */
    align-self: center;
    outline-color: #007bff; /* Bootstrap primary color for input fields */
}

.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
}

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

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

.error-message {
    color: #dc3545;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    padding: 8px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}