/* Reset and Base Styles
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
/* overflow-x: hidden;
  scroll-behavior: smooth;
} */

/* body {
  font-family: "Fredoka", sans-serif;
} */

/* Main Container Layout */
body {
  position: relative;
}
.register-section {
  padding: 0rem 0 6.4rem 0;
  background-color: #7678ed;
  position: relative;
}

.registerContainer {
  max-width: 100rem;
  margin: 0 auto; /*for center */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #fff;
  border-radius: 5rem;
}
.registerFormContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 0 3.2rem 3.2rem;
}
.titles {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.prenume {
  align-self: end;
}
.authImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
}
/* From Uiverse.io by Yaya12085 */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}

.title {
  font-size: 3.2rem;
  color: #7678ed;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  padding-top: 1rem;
  justify-content: center;
}

.message,
.signin {
  color: rgba(88, 87, 87, 0.822);
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  font-weight: 600;
}

.signin {
  text-align: center;
}

.signin a {
  text-decoration: none;
  color: #7678ed;
}

.signin a:hover {
  text-decoration: underline royalblue;
}

.flex {
  display: flex;
  width: 100%;
  gap: 1.2rem;
}

.flex label {
  flex: 1 1 0;
}

.flex .input {
  width: 100%;
  min-width: 0;
}

.form label {
  position: relative;
}

.form label .input {
  width: 100%;
  padding: 10px 10px 10px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
  top: 30px;
  font-size: 0.7em;
  font-weight: 600;
}

.form label .input:valid + span {
  color: green;
}

.submit {
  border: none;
  outline: none;
  background-color: #7678ed;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transform: 0.3s ease;
  width: 70%;
  margin: 0 auto;
}

.submit:hover {
  background-color: rgb(56, 90, 194);
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
.signInGoogleButton,
.signInFacebookButton {
  background-color: #f3f9fa;
  color: #313957;
  padding: 12px 20px; /* Increased padding */
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1.6rem; /* Increased from 1rem */
  cursor: pointer;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-family: inherit;
  transition: background-color 0.3s ease;
}

.signInGoogleButton:hover,
.signInFacebookButton:hover {
  background-color: #e8f4f8;
}

/* Social Login Icons */
.socialLoginIcon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
/* Separator */
.separator-container {
  display: flex;
  align-items: center;
  width: 300px;
  margin: 2rem 0;
}

.separator-line {
  flex: 1;
  border: none;
  border-top: 2px solid #ccc;
  margin: 0 1rem;
}

.separator-text {
  color: #112340;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}
#registerMessage {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  display: none; /* ascuns implicit */
  transition: all 0.3s ease;
}

#registerMessage.loading {
  display: block;
  background-color: #ffcc00;
  color: #333;
}

#registerMessage.success {
  display: block;
  background-color: #4caf50;
  color: white;
}

#registerMessage.error {
  display: block;
  background-color: #ff4d4d;
  color: white;
}

.MessageSuccesBox {
  background-color: #fff !important;
  height: 37rem;
  width: 57rem;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* margin: 0 auto; */
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 4.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem;
}
.succesLoginImg {
  font-size: 7.2rem !important;
  background-color: rgba(0, 230, 171, 0.13);
  border-radius: 50%;
  padding: 1.8rem;
  font-weight: 300;
  color: #00e6ab;
  margin-bottom: 2.4rem;
}
.succesTtile {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 3.6rem;
  text-align: center;
}
.messageItsSelf {
  font-weight: 400;
  font-size: 2.4rem;
  text-align: center;
}
.closeIcon {
  position: absolute;
  font-size: 4rem !important;
  right: 2%;
  top: 2%;
  cursor: pointer;
}
input {
  text-align: left;
}
