/* ========================= */
/* 1. Global Styles          */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* ========================= */
/* 2. Main Container Styles  */
/* ========================= */
.box-container {
  width: 100%;
  height: 430px;
  position: relative;
  background: linear-gradient(to right, #90fff9, #1666df);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: inset 0 0 7px rgba(22, 96, 180, 0.637);
}

/* ========================= */
/* 3. Title & Logo Section  */
/* ========================= */

.title-welcome {
  color: white;
  font-size: 2.3rem;
  font-weight: 400;
  position: absolute;
  top: 34%;
  left: 26%;
  transform: translate(-50%, -50%);
}

.title-friendster {
  color: white;
  font-size: 5.5rem;
  font-weight: 700;
  position: absolute;
  top: 49%;
  left: 34%;
  transform: translate(-50%, -50%);
}

.smiley-logo {
  position: absolute;
  top: 34%;
  left: 13%;
}

/* ========================= */
/* 4. Register Section       */
/* ========================= */

.no-account-text {
  color: white;
  font-size: 1.2rem;
  position: absolute;
  top: 66%;
  left: 27%;
  transform: translate(-50%, -50%);
}

.register-btn {
  position: absolute;
  top: 66%;
  left: 36.5%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 35px;
  border: none;
  border-radius: 20px;
  background-color: white;
  color: #26a7ce;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.register-btn:hover {
  background-color: #289be7;
  color: white;
}

/* ========================= */
/* 5. Login Section          */
/* ========================= */

.login-input {
  position: absolute;
  top: 15%;
  right: 22%;
}

.login-label {
  color: white;
  font-size: 1.2rem;
}

.login-email-input,
.login-password-input {
  display: flex;
  border: none;
  width: 350px;
  height: 45px;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 2px 2px 8px rgba(12, 81, 160, 0.548);
  outline: none;
}

.login-email-input {
  margin-top: 10px;
  margin-bottom: 15px;
}

.login-password-input {
  margin-top: 10px;
}

.remember-me-checkbox {
  margin-top: 25px;
  width: 15px;
  height: 15px;
  margin-left: 5px;
}

.remember-me-label {
  color: white;
  font-size: 1rem;
  margin-left: 5px;
}

.forgot-password {
  color: white;
  font-size: 0.9rem;
  margin-left: 70px;
}

.login-btn {
  margin-top: 20px;
  width: 100px;
  height: 38px;
  border: none;
  border-radius: 20px;
  background-color: white;
  color: #26a7ce;
  font-weight: 500;
  cursor: pointer;
  position: absolute;
  right: 40%;
  transition: background-color 0.2s, color 0.2s;
}

.login-btn:hover {
  background-color: #5bb7f5;
  color: white;
}

/* ========================= */
/* 6. Images & Description   */
/* ========================= */

.image-container {
  display: flex;
  justify-content: space-around;
  padding: 0 50px;
}

.desc-images {
  margin-right: 25px;
  border-radius: 500px;
  box-shadow: 2px 2px 5px rgba(161, 161, 161, 0.74);
}

.description {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  padding: 50px 50px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #26a7ceb2;
}