
body {
	xxbackground-image: url('tiffany.jpg');
	xxbackground-repeat: no-repeat;
	xxbackground-position: center top;
	xxbackground-size: cover;
	
	
  background-color: #045856;
  font-family: 'Arial', sans-serif;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  margin: 0;
}



.wrapper {
  display: flex;
  position: absolute;
  width: 350px;
  borderx: 1px;
  border-stylex: solid;
  border-colorx:  blue;

}

.login-container {
  width: 350px;
  padding: 20px;
  border-radius: 10px;
}

.lnr-eye {
  color: #ffffff;
  font-size: 20px;
}




.logo {
  font-size: 28px;
  font-weight: bold;
  color:  #09AA9A;
  margin-bottom: 10px;
  font-family: 'Dosis', sans-serif;
}

.logo span {
  color: white;
}

h2 {
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
  position: relative;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  color: #9cddd6;
}

.input-group input {
  width: 95%;
  padding: 10px;
  border: 2px;
  border-radius: 5px;
  border-color: #09AA9A;
  background: transparent;
  border-style: solid;
  color: #ffffff;
}

input::placeholder {
    color: #c8f7f2;
    opacity: 1;
  }

.toggle-password {
  position: absolute;
  right: 10px;
  top: 30px;
  cursor: pointer;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.forgot {
  color: #ffffff;
  text-decoration: none;
}

.login-btn {
  width: 100%;
  background-color: #09AA9A;
  //background-color: #003153;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.login-btn:hover {
    background-color: #9cddd6;
	color: #09AA9A;
}


.login-btn-cadastrar {
  width: 100%;
  background-color: #ffffff;
  //background-color: #003153;
  color: #09AA9A;
  padding: 12px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.login-btn-cadastrar:hover {
    background-color: #09AA9A;
	color: #ffffff;
}


.divider {
  text-align: center;
  color: #888;
  margin-bottom: 10px;
}

.social-login {
  display: flex; 
  justify-content: center; 
  align-items: center;
  background-color: transparent;
  paddingx: 10px;
  border-radiusx: 25px;
  margin-bottom: 40px;
  cursor: pointer;
  font-weight: bold;

}

.social-login span {
widthx: 50%; /* Or any specific width */
  marginx: auto;
}


.social-login img {
  width: 120px;
  margin-rightx: 100px;
}

.google img {
  filter: none;
}

.facebook img {
  filter: none;
}

.create-account {
  text-align: center;
  font-size: 14px;
}

.create-account a {
  color: #49fc03;
  text-decoration: none;
}



/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.remember-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.remember-wrapper input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    border: 2px solid #9cddd6;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.custom-checkbox::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #9cddd6;
    border-radius: 1px;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.remember-wrapper input[type="checkbox"]:checked + .checkbox-label .custom-checkbox {
    border-color: #09AA9A;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.remember-wrapper input[type="checkbox"]:checked + .checkbox-label .custom-checkbox::after {
    transform: scale(1);
}

.checkbox-label {
    color: #a0a0b0;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.remember-wrapper:hover .checkbox-label {
    color: #ffffff;
}

.forgot-password {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.forgot-password:hover {
    color: #9cddd6;
}


