:root {
  --background-color: #0a0e17;
  --card-color: #0f1521;
  --divider-color: #273246;
  --border-color: #192232;
  --textbox-hint-color: #9ca3af;
  --accent-color: #7da2ff;
}

html {
  --sz: 24px;
  --c1: #7da2ff;
  --c2: #273246;
  --c3: #7da2ff;
  --c4: #273246;
  --ts: 50% / calc(var(--sz) * 10) calc(var(--sz) * 10);
  --pz: calc(var(--sz) * 0.65), #fff0 calc((var(--sz) * 0.65) + 1px);
  height: 100vh;
  background: radial-gradient(circle at 53% 25%, var(--c4) var(--pz)) var(--ts),
    radial-gradient(circle at 75% 47%, var(--c2) var(--pz)) var(--ts),
    radial-gradient(circle at 3% 75%, var(--c2) var(--pz)) var(--ts),
    radial-gradient(circle at 25% 53%, var(--c4) var(--pz)) var(--ts),
    radial-gradient(circle at 53% 75%, var(--c3) var(--pz)) var(--ts),
    radial-gradient(circle at 75% 97%, var(--c1) var(--pz)) var(--ts),
    radial-gradient(circle at 3% 25%, var(--c1) var(--pz)) var(--ts),
    radial-gradient(circle at 25% 3%, var(--c3) var(--pz)) var(--ts),
    conic-gradient(
        from 0deg at 50% 50%,
        var(--c1) 0 25%,
        var(--c2) 0 50%,
        var(--c3) 0 75%,
        var(--c4) 0 100%
      )
      var(--ts);
}

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

body {
  /* background: var(--background-color); */
  font-family: "Inter", sans-serif;
}

form {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #0a0e17e8;
}

.signup-card, .login-card {
  width: 350px;
  height: 520px;
  background: var(--card-color);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}

.logo {
  width: auto;
  height: 60px;
}

.signup-button {
  appearance: button;
  backface-visibility: hidden;
  /* background-color: var(--accent-color); */
  background: linear-gradient(
    0deg,
    rgba(125, 162, 255, 1) 0%,
    rgb(49 107 255) 100%
  );
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset,
    rgba(50, 50, 93, 0.1) 0 2px 5px 0, rgba(0, 0, 0, 0.07) 0 1px 1px 0;
  box-sizing: border-box;
  color: var(--card-color);
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  height: 44px;
  line-height: 1.15;
  margin: 12px 0 0;
  outline: none;
  overflow: hidden;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-transform: none;
  transform: translateZ(0);
  transition: all 0.2s, box-shadow 0.08s ease-in;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 79%;
}

.signup-button:focus {
  box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset,
    rgba(50, 50, 93, 0.2) 0 6px 15px 0, rgba(0, 0, 0, 0.1) 0 2px 2px 0,
    rgba(50, 151, 211, 0.3) 0 0 0 4px;
}

.login-instead-div p {
  font-size: 14px;
  color: white;
}

.login-instead-div a {
  font-size: 14px;
  color: var(--accent-color);
  text-decoration-line: underline;
}

.agreement {
  padding-top: 15px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.agreement p {
  color: white;
  position: static;
  font-size: 12px;
  width: 79%;
  transform: none;
  text-align: center;
}

.agreement a{
  color: var(--accent-color);
}

.other-options{
  display: flex;
  width: 79%;
  justify-content: center;
  text-align: center;
}

.other-options > a{
  width: 100%;
}

.other-options > a > svg{
  width: 100%;
  height: 20px;
  border: 2px solid var(--accent-color);
  padding: 5px 0px 5px 0px;
  border-radius: 6px;
  margin-left: 2px;
  margin-right: 2px;
  display: flex;
  justify-self: center;
}

.forgot-pass-text{
  color: var(--accent-color);
  width: 79%;
  text-align: end;
  font-size: 12px;
}

body *:focus{
  outline: none;
}