/* Base styles (Desktop by default) */

/* Importing Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter Tight", sans-serif;
}


html,
body {
  min-height: 100vh;

  height: 100%;

}

.platfrom-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto 0;
}

.platform-login-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  background: url(./login-bg-1.png), url(./login-bg-2.png);
  background-repeat: no-repeat;
  background-position: left center, right center;
}

.login-logo {
  margin-bottom: 55px;
}

.login-heading {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.login-heading span {
  background: linear-gradient(90deg, #1d1d1e 0%, #363775 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-subheading {
  margin-bottom: 48px;
  opacity: 0.5;
  color: black;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.login-field {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 366px;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  height: 58px;
  padding-left: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  background: white;
  transition: all 0.3s;
}

.login-field:focus-within {
  border-color: #5D62FF;
}

.login-logo img {
  width: 105px;
}

.field-label {
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #AAA7AF;
  transition: all 0.3s;
  pointer-events: none;
}

/* Mimic focus-within state when input is focused or has value */
.login-field:focus-within .field-label,
.login-field.has-value .field-label {
  top: 5px;
  transform: none;
  font-size: 12px;
  color: #5D62FF;
}

/* Reset label to center if input is empty and unfocused */
.login-field input:placeholder-shown+.field-label {
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #AAA7AF;
}

.login-field input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  font-size: 15px;
  padding-top: 12px;
}

.login-field span {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #AAA7AF;
  font-size: 21px;
  cursor: pointer;
}

.submit-login {
  height: 50px;
  border-radius: 90px;
  outline: none;
  border: none;
  margin-bottom: 20px;
  width: 100%;
  cursor: pointer;
  background: linear-gradient(90deg, #5D62FF 10%, #8BA4FF 90%);
  color: white;
  font-weight: 500;
  transition: all 0.5s;
}

.submit-login:hover {
  background: linear-gradient(90deg, #8BA4FF 10%, #8BA4FF 90%);

}

.login-form a {
  text-decoration: none;
  display: flex;
  width: fit-content;
  font-size: 15px;
  font-weight: 500;
  color: black;
  cursor: pointer;
  margin-bottom: 30px;
  opacity: 0.5;
}

.login-options {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.login-options span {
  height: 1px;
  background: #E8E7EB;
  width: 100%;
}

.login-options div {
  white-space: nowrap;
  color: black;
  font-weight: 500;
  font-size: 13px;
  margin: 20px 0;
  opacity: 0.5;
}

.login-options-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 30px;
}

.login-options-actions button {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  border-radius: 90px;
  outline: none;
  cursor: pointer;
  border: none;
}

.login-options-actions button:hover {
  background: linear-gradient(90deg, #f0f0f0 10%, #f9f9f9 90%);
}


.login-options-actions button img {
  width: 24px;
}