* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: Arial, sans-serif;
}

body {
   background-color: #f7f7f7;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;
}

.login-container {
   background-color: white;
   border-radius: 10px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   display: flex;
   overflow: hidden;
   width: 800px;
   max-width: 100%;
}

.login-box {
   display: flex;
   width: 100%;
}

.login-form {
   padding: 40px;
   width: 50%;
}

.logo img {
   width: 50px;
   margin-bottom: 20px;
}

h6 {
   margin-bottom: 20px;
   color: #333;
   text-align: center;
}

form {
   display: flex;
   flex-direction: column;
}



label {
   margin-bottom: 5px;
   color: #555;
}

input[type="email"],
input[type="password"] {
   padding: 10px;
   margin-bottom: 20px;
   border: 1px solid #ccc;
   border-radius: 8px;
}
input{
    background-color:white;
}
input:focus {
   border-color: #00c6d7;
   outline: none; 
}
button {
   background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #37474f 100%);
   color: white;
   padding: 10px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
}

button:hover {
   background-color: #51c;
}

.reset-password {
   margin-top: 10px;
   font-size: 14px;
   color:#26727c;
   text-align: left;

   text-decoration: none;
}

.login-image {
   width: 50%;
}

.login-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
/* Add this media query */
@media (max-width: 768px) {
   .login-container{
      width: 80%;
   }
   .login-image {
      display: none;
   }
   .login-form {
      width: 100%;
  }
  h2{
   text-align: center;
  }
}
