.login_container {
margin: 40px 20px 20px 20px;
display: flex;
height: 90%;
background-color: #f3f3f4;
padding: 10px;
}

.carousel {
width: 50%;
position: relative;
overflow: hidden;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
background-color: white;
}

.carousel-images {
display: flex;
transition: transform 1s ease-in-out;
padding: 10px;
margin: 20px;
}

.carousel-slide {
width: 100%;
height: 70vh;
object-fit: fill;
}

.login-form {
width: 50%;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
background: white;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}

h2 {
margin-bottom: 10px;
font-size: 20px;
font-weight: bold;
color: #333;
}

label {
display: block;
margin-bottom: 8px;
font-size: 14px;
color: #333;
}

.input-container {
display: flex;
position: relative;
width: 100%;
max-width: 350px;
margin: 0 auto;
}

.input-container i {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
color: #999;
}

.input-container input {
width: 100%;
padding: 12px 15px 12px 35px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 16px;
background-color: #f5f3f3;
}

button {
border: none;
width: 100%;
margin: 0 auto;
display: block;
margin-top: 30px;
height: 40px;
border-radius: 5px;
font-size: 18px;
background: #3f70ed;
color: #fff;
background-color: #1d388d;
}

button:hover {
background-color: #1d388d;
}

.forgot-links {
display: flex;
justify-content: center;
gap: 90px;
font-size: 14px;
align-items: center;
margin-top: 5px;
}

.forgot-links a {
text-decoration: none;
color: #007bff;
}

.forgot-links span {
color: #000;
}

.social-login {
display: flex;
justify-content: center;
margin-top: 20px;
}

.social-login a {
margin: 0 10px;
font-size: 10px;
color: #fff;
background-color: #333;
padding: 10px;
border-radius: 5px;
text-decoration: none;
}

.social-login a.google {
background-color: #db4437;
}

.social-login a.facebook {
background-color: #4267b2;
}

.social-login a.linkedin {
background-color: #0077b5;
}

.input-container .eyebtn {
position: absolute;
left: inherit;
right: 10px;
top: 50%;
transform: translateY(-50%);

}

.logo {
height: 60px;
width: 150px;
padding: 10px 5px;
}

.contact {
float: inline-end;
padding: 5px;
margin-top: 3px;
margin-right: 50px;
font-size: 10px;
font-weight: bold;
color: #333;
background-color: #f7f7f7;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}

.contact:hover {
background-color: #e2e2e2;
}

.contact::before {
content: "📞";
font-size: 18px;
}

.create-account {
text-align: center;
margin-top: 10px;
}

.create-account .sign-up-link {
color: #007bff;
text-decoration: none;
}

.create-account .sign-up-link:hover {
text-decoration: underline;
}

@media (max-width: 768px) {
.login_container {
border-radius: 20px;
}

.carousel {
display: none;
}

.login-form {
width: 400px;
padding: 0px 20px;
max-height: 100vh;
border-radius: inherit;
overflow-y: auto;
}

.logo {
height: 100px;
width: 80px;
padding-top: 0px;
margin: 0px 5px;
}

.eyebtn {
padding-left: 210px;
}
}