/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Add a shadow to the navbar */
.navbar {
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Style the logo */
.logo img {
    height: 3.5rem;
    margin-left: 4rem;
}

/* Style the links */
.links a {
    text-decoration: none;
    color: black;
    margin-right: 20px;
    transition: color 0.3s;
}

/* Style the red link */
.links a span {
    color: red;
}

/* Style the links on hover */
.links a:hover {
    color: blue;
}

/* Style the button */
.button button {
    background-color: blue;
    color: white;
    border: none;
    margin-right: 2rem;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.button button:hover{
    background-color: white;
    border: solid blue ;
    border-radius: 5px;
    border-width: 0.1rem;
    color: blue;
}

/* Add some space around the button */
.button {
    margin-left: 20px;
}




/* Style the logo container */
.logo-container {
    text-align: center;
    margin-top: 20px; /* Adjust the margin as needed */
}

/* Style the logo */
.logo img {
    height: 80px; 
}

/* Center the login container vertically and horizontally */
.login-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;

    padding-left: 0;
    padding-right: 30px;
    max-width: 800px; /* Adjust this for the desired width */
    margin: 20px auto; 
    /* margin-bottom: -30px; */
}
.image-container {
    /* padding-bottom: -2rem; */
    /* flex: auto; */
    /* padding-right: 30px; */
    border-radius: 10px 0 0 10px; /* Apply border radius to the left side */
    overflow: hidden; /* Hide any overflow from the rounded corners */
}

.image img {
    width: 25rem;
    display: block;
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}

/* Style the login form on the right */
.login-form {
    flex: 2;
    margin-left: 20px; 
    text-align: center;
}

/* Style the form elements */
.login-form h2 {
    margin-bottom: 40px;
    font-weight: lighter;
}

.login-form label {
    padding-left: 2px;
    padding-top: 10px;
    padding-bottom: 5px;
    flex: 1;
    text-align: left;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    justify-content: left;
    /* align-items: left; */
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"]{
    width: 100%;
    height: 45px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    width: 100%;
    height: 40px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border: none;
}

.login-form button:hover {
    background-color: #0056b3;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
