body {
    font-family: "Arial", sans-serif;
    background-color:rgb(226, 222, 222);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Style for h2 */
h2 {
    color: darkblue;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

a:link {
    text-decoration: none;
}

form {
    margin: 0;
}

.login-options {
    display: flex;
    width: 600px;
}

/* Styling for main section where options are*/
.login-window {
    display: flex;
    flex-direction: column;
    background-color:#F8F9FA;
}

/* section for login and register on right */
.login-left, .register-right {
    flex: 1;
    padding: 20px;
}

/* Below section */
.about {
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color:rgb(11, 50, 122);
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solidrgb(43, 126, 215);
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.button {
    background-color: #007BFF; 
    color: #FFFFFF; 
    font-family: "Arial", sans-serif;
    font-weight: 500; 
    padding: 10px 20px; 
    border: 1px solid #007BFF; 
    border-radius: 5px; 
    transition: background-color 0.3s ease; 
    cursor: pointer; 
    display: block;
    text-align: center;
    margin: 5px 0; 
}

.button:hover {
    background-color: #4DA8FF; 
}

/* Text for error message */
.error {
    color: red;
}



