.login-container {
    display: flex;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-image img {
    width: 310px;
    height: 100%;
}

.login-form {
    padding: 20px;
    background-color: white;
    width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.login-form h2 {
    font-size: 35px;
}

.login-form form {
    width: 100%;
}

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

.remember-me {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

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

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #0A4D68;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.login-form button:hover {
    background-color: #0A4D68;
}
.title-line {
    width: 120px;
    height: 3px;
    background-color: #0A4D68;
    display: inline-block;
    margin-left: 2px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.login-options a {
    color: #0A4D68;
    text-decoration: none;
}

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


@media (max-width: 767px){

	.login-form {
        width: 100%;}
        .login-form h2 {
            font-size: 25px;
        }
}








