/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Apply styles to the entire body */
body {
    margin: 0;
}

/* Styles for the container that holds both sections */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Styles for the left image */
.image {
    width: 50%;
    height: auto;
    max-width: 100%;
    margin-right: 20px;
    margin-left: 20px;
}

/* Styles for the login container on the right */
.login-container {
    width: 50%;
    height: 45vh;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
    margin-left: 20px;
}

/* Styles for the login form elements (Add your specific styles for form elements below this comment) */

/* Add your styles for form elements below this comment */

h1 {
    font-size: 24px;
    text-align: center;
}

ul.flashes {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin: 10px 0;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="checkbox"] {
    margin-right: 5px;
}

input[type="submit"] {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}

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