body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Use min-height instead of height for better responsiveness */
  font-family: 'Roboto', sans-serif; /* Ensure a fallback font is specified */
  background-color: #f1f3f4;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  padding: 10px; /* Add padding for better spacing on smaller screens */
}

.login-box {
  background-color: white;
  padding: 40px;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
  border: none;
  width: 100%;
  max-width: 500px; /* Ensure it doesn't stretch too much on larger screens */
  border-radius: 25px;
  height: 100%;
}

.logo {
  margin-bottom: 30px; /* Add space below the logo */
  text-align: left; /* Center the logo */
}

.logo svg {
  width: 48px;
  height: 48px;
}

.header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.left {
  text-align: left;
  width: 100%; /* Full width on mobile */
}

.right {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  width: 100%; /* Full width on mobile */
}

span {
  font-size: 34px;
}

p {
  color: #5f6368;
  margin-bottom: 20px;
  font-size: 15px;
}

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

input[type="email"],
input[type="tel"] {
  padding: 10px;
  border: 1px solid #1f1f1f;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 16px;
  height: 35px;
}




.phone-input-container select {
  padding: 10px;
  border: none; /* Remove border */
  background: none; /* Remove background */
  font-size: 18px;
  height: 35px;
  width: 15%; /* Adjust width to increase size */
  appearance: none; /* Remove default appearance */
  -webkit-appearance: none; /* Remove default appearance for Safari */
  -moz-appearance: none; /* Remove default appearance for Firefox */
}

input[type="tel"] {
  width: 100%;
}

.forgot-email,
.guest-mode {
  text-align: left;
  margin-bottom: 20px;
  font-size: medium;
}

.forgot-email a,
.guest-mode a {
  color: #0b57d0;
  text-decoration: none;
}

.guest-mode p {
  font-size: 14px;
}

button.next-button {
  padding: 10px;
  background-color: #0b57d0;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  width: auto; /* Adjust width for responsiveness */
  height: 40px;
}

button.next-button:hover {
  background-color: #1669c1;
}

.create-next-container {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
 
}

.create-account a {
  color: #0b57d0;
  text-decoration: none;
}

.create-account a:hover {
  text-decoration: underline;
}

 /* Style for arrow button */
 .arrow-button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  display: flex;
  align-items: center;
}

/* Style for arrow icon */
.arrow-icon {
  width: 5px;
  height: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid black;
  margin-left: 1px;
  display: flex;
  transition: transform 0.3s ease-in-out;
}

/* Style for dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 80px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 2;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}



/* Media Query for Mobile Devices */
@media (max-width: 600px) {
  body {
    background-color: #ffffff; /* Hide the background color */
  }

  .login-box {
    padding: 20px;
    /* border-radius: 15px; */
    border: none;
    width: 90%; /* Make the login box take up most of the screen */
  }

  .header {
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start; /* Align elements to the left */
  }

  .right {
    margin-top: 20px;
    align-items: center; /* Center elements */
    text-align: center; /* Center text */
  }

  .create-next-container {
    flex-direction: row; /* Stack elements vertically */
    align-items: center; /* Center elements */
    gap: 140px; /* Adjust the space between the elements */
  }

  button.next-button {
    width: 25%; /* Full width button */
  }

  .phone-input-container {
    border-radius: 20px;
    width: 100%; /* Full width container */
    max-width: none; /* Remove max-width restriction */
  }

  .phone-input-container select {
    width: 15%; /* Adjust width for smaller screens */
  }

  .phone-input-container input[type="tel"] {
    width: 100%; /* Adjust width for smaller screens */
  }


/* Adjust the width of the country list dropdown */
.intl-tel-input .country-list {
  width: 50px; /* Adjust this value to the desired width */
}

/* Optionally, you can also adjust the font size and padding for a better appearance */
.intl-tel-input .country-list .country {
  padding: 5px 5px;
  font-size: 2px;
}

/* You can also adjust the width of the input field if necessary */
.intl-tel-input input[type="tel"] {
  width: 100%; /* Ensure the input field takes up the full width */
}
   
}
