@font-face {
  font-family: 'Segoe UI';
  src: url('fonts/fonts/segoe-ui/font/segoeui.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Segoe UI';
  src: url('fonts/fonts/segoe-ui/font/segoeuib.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  font-family:
    'Segoe UI',
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    'Helvetica Neue',
    sans-serif;
}

body {
 
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.login-box {
  background: #292929;
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  width: 440px;
  padding: 40px;
  margin-bottom: 0px 523.125px;
  border-radius: 12px;
  box-shadow:
    0 0 2px rgba(0, 0, 0, 0.24),
    0 8px 16px rgba(0, 0, 0, 0.28);
}

.login-box h1,
p {
  display: grid;
  justify-items: center;
}

.logo {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.logo img {
  width: 114px;
  height: 24px;
}

.logo span {
  font-size: 18px;
  font-weight: 600;
  color: #ddd;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

p {
  font-size: 10px;
}

p > span {
  color: #7f85f5 !important;
}

.subtitle {
  font-size: 14px;
  margin-bottom: 24px;
  color: #d6d6d6;
}

input[type='text'] {
  width: 100%;
  min-height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid #666;
  border-bottom: 0.8px solid #fff;
  border-radius: 4px;
  color: #d6d6d6;
  font-size: 14px;
  margin-bottom: 10px;
  outline: none;
}

input[type='text']:focus {
  border-bottom: 2px solid #7f85f5;
}

.link {
  color: #7f85f5; /* Microsoft's specific blue-purple */
  text-decoration: none;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 30px;
}

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

.btn-primary {
  width: 100%;
  padding: 10px;
  background-color: #4f52b2;
  border: none;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background-color: #5b5fc7;
}

.create-account {
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
}

/* Transition Steps */
.step {
  display: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.step.active {
  display: block;
  opacity: 1;
}

/* Back Button/Identity Display */
.back-button {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
  cursor: pointer;
}

/* Password specific input styling */
input[type='password'] {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  outline: none;
}

input[type='password']:focus {
  border-bottom-color: #7f85f5;
}

footer {
  position: fixed;
  bottom: 20px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

.footer-links {
  margin-bottom: 5px;
}

.footer-links a,
footer p a {
  color: #aaa;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover,
footer p a:hover {
  text-decoration: underline;
}
