@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
  box-sizing: border-box;
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
}

body {
  margin: 0;
  background: url('/src/assets/Hero.png') center/cover no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

header img {
  width: 160px;
  height: auto;
}

.container {
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.welcome h2 {
  font-weight: 500;
  margin: 0;
}

.welcome p {
  color: rgb(161, 161, 161);
  margin: 16px 0 11px;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

section.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgb(161, 161, 161);
  ;
}

.steps section {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.stepNumber {
  background-color: rgb(161, 161, 161);
  color: white;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  padding-top: 7px;
  font-size: large;
}

.step {
  flex: 1;
  text-align: center;
  font-size: 14px;
}

section.active .stepNumber {
  background-color: #007bff;
}

section.active .step {
  color: black;
}

.line {
  width: 50px;
  height: 35px;
  border-bottom: 2px dashed;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 12px;
  margin-bottom: 5px;
  font-size: 14px;
}

.email-input,
.password-input {
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 8px;
}

input[type="password"],
input[type="email"],
input[type="text"] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  margin: 0;
  flex: 1;
  font-size: 14px;
}

img {
  width: auto;
  height: 18px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 15px 0;
}

.checkbox input {
  scale: 1.5;
}

.checkbox label {
  translate: 5px -5px;
  font-size: 16px;
  color: rgb(56, 56, 56)
}

form a {
  text-align: end;
  text-decoration: none;
  margin: 18px 0;
}

.submit-btn {
  background-color: #007bff;
  color: white;
  padding: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.submit-btn:hover {
  background-color: #1d4ed7;
}

.login {
  display: contents;
}

.login div {
  display: block;
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: medium;
  width: 100%;
  height: 100%;
  background-color: #007bff;
  /* color: white; */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 18px 0;

}

.login-link {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  color: #3b3b3b;
}

.login-link a {
  color: #007bff;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

.social-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

hr {
  width: 100%;
  border-color: white;
}

.line-or {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.text-or {
  position: absolute;
  translate: 0 -5px;
  background-color: white;
  width: 80px;
  text-align: center;
}

.social-buttons>button>a {
  width: 150px;
  display: flex;
  align-items: center;
  margin: 0 10px;
  padding: 10px;
  border: 2px solid white;
  box-shadow: 0px 3px 5px rgba(128, 128, 128, 0.438);
  border-radius: 5px;
  cursor: pointer;
  color: #8f8f8f;
  background-color: white;
  font-size: 15px;
  text-decoration: none;
}

.social-buttons>button {
  background: none;
  border: none;
}

button img {
  margin: 0 10px;
}