/* Reset some default styles */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
} */

/* Container to hold the form and image side by side */
.container {
  display: flex;
  height: 100%;
  width:100%;
}

/* Left section containing the form */
.formContainer {
  width: 50%;
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #ffffff;

}
.formContainerDiv{
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 10%;
}
.formContainerInner{
  width: 60%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
padding: 20px;


}
.formContainerInner h2{
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  width: 150px;
}

/* h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
} */
.formHeading {
  width: 100%;
  /* height: 120px; */
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 10px;
  margin-bottom: 15px;

}

.formHeading h2 {
  margin: 0;
  font-weight: 700;
  margin-bottom: 5px;
}

.formHeading h6 {
  margin: 0;
  font-weight: 400;
  color: #969696;  /* Corrected fontColor to color */
}

.form {
  width:100%;
}
.inputGroup {
  margin-bottom: 15px;
  width: 90%;
  position: relative;
}

.inputGroup input {
  width: 100%; /* Adjust input width to take full available space */
  padding: 12px;
  padding-top: 20px; /* Add padding at top to make space for the placeholder */
  margin: 5px 0;
  border: 0.3px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease, padding 0.3s ease;
}

/* Focus state */
.inputGroup input:focus {
  border-color: #66C293; /* Change border color */
  outline: none;  /* Remove the default outline */
  padding-top: 10px; /* Adjust padding so the input field doesn't overlap with the placeholder */
  border-top: none; /* Remove top border for the "break" effect */
  border-left: 0.3px solid #ccc; /* Keep left border */
  border-right: 0.3px solid #ccc; /* Keep right border */
}

/* Move placeholder up on focus */
.inputGroup input:focus::placeholder {
  transform: translateY(-20px);
  font-size: 12px; /* Smaller font size when placeholder moves up */
  color: #66C293;  /* Change placeholder color */
}

/* Style for placeholder when input is not focused */
.inputGroup input::placeholder {
  transition: transform 0.3s ease, font-size 0.3s ease;
  color: #aaa; /* Default placeholder color */
  position: absolute; /* Position placeholder inside the input field */
  top: 20px; /* Ensure placeholder starts inside the input */
  left: 10px; /* Adjust left positioning */
}

/* Add the break effect for the top border when focused */
.inputGroup input:focus::placeholder {
  color: #66C293; /* Color of the placeholder when focused */
}


.submitButton {
  width: 98%;
  padding: 12px;
  border: none;
  background-color: #4caf50;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.submitButton:hover {
  background-color: #45a049;
}

.socialButtons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.socialButton {
  padding: 12px;
  width: 100%;
  background-color: white; /* White background */
  color: #333; /* Text color */
  border: 1px solid #E6E8E7; /* Border color */
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Space between the logo and the text */
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

/* Social button icon styling */
.socialIcon {
  width: 20px;
  height: 20px;
}

/* Facebook button style */
#facebook-signin {
  border-color: #E6E8E7; /* Keep border color same for both buttons */
}

#google-signin {
  border-color: #E6E8E7;
}

/* Hover effect for social buttons */
.socialButton:hover {
  opacity: 0.9;
}

/* Password reset link */
.linkContainer {
  margin-top: 20px;
  display: flex;
  align-items: center;  /* Vertically center align items */
  justify-content: flex-start;  /* Align items to the left */
  text-align: center;
}

.createOne {
  color: #66C293;
  text-decoration: none;
  font-size: 14px;
  margin-left: 5px;  /* Space between the "Need an account?" text and the link */
}

.linkContainer h6 {
  margin: 0;  /* Remove default margin from h6 */
  font-size: 14px;  /* Ensure font size is consistent */
}


.createOne:hover {
  text-decoration: underline;
}
/* Right section containing the image */
.imageColumn {
  width: 50%;  /* Takes up half the screen width */
  height: 100vh;  /* Full viewport height */
  display: flex;
  justify-content: center;  /* Centers the image horizontally */
  align-items: center;  /* Centers the image vertically */
  overflow: hidden;  /* Hides any overflow */
}

.imageColumn img {
  width: 100%;  /* Makes the image take full width */
  height: 100%;  /* Makes the image take full height */
  object-fit: cover;  /* Ensures the image covers the whole container */
}
