* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh; /* Ensures full height responsiveness */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Left panel - Form */
.left-panel {
    background-image: url("../images/bird.png");
    background-size: cover; /* Ensures it covers the entire screen */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    margin: 0; /* Removes default margin */
    height: 100%; /* Ensures full height of the container */
    padding: 40px;
    display: flex;
    flex-direction: column;
    width:60%;
}

.left-panel h2 {
    font-family: Arial;
font-weight: 400;
font-style: italic;
font-size: 40px;
line-height: 46px;
letter-spacing: 0%;

}

.left-panel h1 {
    font-family: 'Roboto';
font-weight: 700;
font-size: 60px;
line-height: 70.31px;
letter-spacing: 0%;
margin-top: 4vh;

}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top:4vh;
}

label {
    font-size: 22px;
    margin-top: 15px;
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #85B7CC;
    border-radius: 15px;
    height:70px;
    font-size:20px;
}

.password-container {
    position: relative;
}

.password-container input {
    width: 100%;
}

.password-container {
    position: relative;
}

.password-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center; /* Vertically center the image */
    justify-content: center; /* Horizontally center the image */
}

.password-container .toggle-password img {
    width: 21px; /* Adjust width as needed */
    height: auto;
}

.options {
    display: flex;
    justify-content: space-between; /* Distributes elements */
    align-items: center; /* Aligns items vertically */
    width: 100%; /* Adjust width as needed */
    height:auto;
}

.login-btn {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #85B7CC;
color:#000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: Arial;
font-weight: 400;
font-size: 26px;
line-height: 29.9px;
letter-spacing: 0%;



}

.or-text {
    text-align: center;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 20px;
    line-height: 23.44px;
    letter-spacing: 0%;
    margin-top:4vh;
    
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 4vh;
}


.apple-login, .google-login{
    border:none;
    background: transparent;
    cursor: pointer;
}
.apple-login img, .google-login img{
    width:68px;
    height:68px;
    cursor: pointer;
}
.signup-text {
    text-align: center;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 25px;
    line-height: 29.3px;
    letter-spacing: 0%;
    margin-top:4vh;
    
}

.signup-text a {
    color: #007bff;
    text-decoration: none;
}

/* Right panel - Image */
.right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
    width:40%;
}

.right-panel img {
    width: 100%;
    height: 100%;
    /* Ensures full coverage without distortion */
}
.checkbox-item input{
    width:22px;
    height:22px;
    border-color: 1px solid #85B7CC;
    border-radius: 25px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 5px;
}

.checkbox-item label {
    font-family: 'Roboto';
font-weight: 300;
font-size: 18px;
line-height: 21.09px;
letter-spacing: 0%;
margin-bottom:5px;
}

.options a {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 18px;
    line-height: 21.09px;
    letter-spacing: 0%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: Auto;
    color:#000;
    
}


@media (max-width: 1280px) {
 
.left-panel{
    width:65%;
    background-position: top center;
}
.right-panel{
    width:35%;
}
    .left-panel h2 {
        font-size: 25px;
        line-height: 42px;
        
    }

    .left-panel h1 {
        font-size: 25px;
        line-height: 60px;
        margin-top:1vh;
    }
    form{
        margin-top:1vh;
    }

    input {
        height: 35px;
        border-radius:5px;
        font-size:16px;
    }

    .login-btn {
        font-size: 20px;
        height:50px;
    }

    .or-text {
        font-size: 14px;
    }

    .signup-text {
        font-size: 14px;
    }

    .checkbox-item label{
        font-size: 14px;
    }
    .checkbox-item input{
        width:14px;
        height:auto;
    }
   
   .or-text{
    margin-top:1vh;
   }
    .google-login img, .apple-login img{
        width:30px;
        height:auto;
    }
    .social-login{
        margin-top:1vh;
    }
    .signup-text{
        margin-top: 1vh;
    }
    .options a {
        font-size:14px;
    }
}
 .containermobile {
    display: none;
  }
/* Show mobile on small screens, hide desktop */
@media (max-width: 768px) {
  .container {
    display: none;
  }

  .containermobile {
    display: block;
    background-color: #85B7CC;
    width: 100%;
    height: auto;
  }

.headermobile {
  margin-top: 40px;
  text-align: center;
  background-color: #85B7CC;
}

.welcomemobile {
  font-size: 28px;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}

.logomobile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.logo-imgmobile {
  width: 46px;
  height: 46px;
}

.logotextmobile {
  font-size: 40px;
  font-weight: 400;
  
}

.indicatorcontainer {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.dotmobile {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid white;
  margin: 0 4px;
}

.dotmobile.active {
 box-shadow: 0px 0px 5px 0px #FFFFFF;
border: 2px solid #FFFFFF;
  width: 30px;
  border-radius: 99px;
}

.logincontainermobile {
  background-color: white;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 24px 20px;
  width: 100%;
  height: 100%;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login-titlemobile {
  text-align: center;
  font-size: 30px;
  font-weight:600;
  margin-bottom: 20px;
  margin-top: 10px;
}

.subtitlemobile {
  text-align: center;
  font-size: 16px;
   font-weight: 400;
  color: #000000;
  margin-bottom: 30px;
}
.inputgroupmobile {
  margin-bottom: 16px;
  position: relative; /* Needed for absolute positioning of label */
}

.textform {
  position: absolute;
  top: -17px; /* Adjust this value for precise vertical alignment */
  left: 14px; /* Match horizontal padding of input */
  background-color: white;
  padding: 0 4px;
  font-size: 12px;
  font-weight: 400;
  color: gray;
  z-index: 1;
}

.inputmobile {
  width: 100%;
  padding: 25px 10px; /* Top padding increased to make space for the label */
  border: 1px solid #85B7CC;
  border-radius: 10px;
  font-size: 14px;
  color: #000;
  box-sizing: border-box;
}

.inputmobile::placeholder {
  color: black;
}
.password-groupmobile .eye-iconmobile {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.optionsmobile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* <-- FIXED: use 'flex-start' instead of 'top' */
  font-size: 13px;
  margin-bottom: 50px;
}



.forgotmobile {
  color: #000;
  font-weight: 400;
  font-size: 12px;
  text-decoration: underline;
}

.remembermemobile {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-family: 'Roboto', sans-serif;
  margin-top: 0px;
  padding-top: 0px;
}

.remembermemobile input[type="checkbox"] {
  width: 12px;
  height: 12px;
  border: 1px solid #85B7CC;
  border-radius: 2px;
  background-color: white;
top: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;
  padding: 0;
  margin: 0;
  position: relative;

}

.remembertext {
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  padding-top: 1px; /* adjust for visual alignment */
}


.remembermemobile input[type="checkbox"]:checked {
  background-color: #85B7CC;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10l-2-2 1.4-1.4L6 7.2l4.6-4.6L12 4l-6 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}


.loginbtnmobile {
  width: 100%;
  padding: 12px;
  background-color: #94c1d2;
  color: black;
  font-weight: 400;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 20px;
}

.ordividermobile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #888;
  
  margin-bottom: 20px;
  margin-top: 20px;
}

.ordividermobile .line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  margin: 0 8px;
}

.socialsmobile {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.social-iconmobile {
  width: 59.74px;
  height: 59.74px;
}

.signuptextmobile {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
}

.signuplinkmobile {
  color: rgba(133, 183, 204, 1);
  text-decoration: underline;
  
}

}

/* Show desktop on larger screens, hide mobile */
