* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", serif;
  font-weight: 500;
  font-style: normal;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  background: url("../images/start.jpg") no-repeat;
  background-size: cover 150%;
  background-position: center;
}

.wrapper {
  width: 420px;
  background: rgba(0, 185, 231, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0, 185, 231, 0.2);
  color: rgba(220, 220, 220);
  align-items: center;
  border-radius: 10px;
  padding: 30px 40px;
}

.wrapper h2 {
  font-family: "Russo One", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  text-align: center;
}

.wrapper p {
  text-align: center;
  width: 100%;
  margin-top: 5%;
  margin-bottom: 5%;
  font-size: 17px;
}

.wrapper .btn,
.btn {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  height: 45px;
  background: #ff4618;
  border: none;
  outline: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  line-height: 45px;
}

.wrapper .btn:hover,
.btn:hover {
  box-shadow: 0 0 10px rgba(255, 70, 24, 0.2);
  scale: 1.01;
  background: #d03c16;
  color: #fff;
  text-decoration: none;
}

.btn-google {
  background: #fff;
  color: #ff4618;
  border: 2px solid #ff4618;
  margin-bottom: 4px;
  transition: background 0.3s, color 0.3s;
}

.btn-google:hover {
  background: #ff4618;
  color: #fff;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.4s;
}
.fade-in.visible {
  opacity: 1;
}

.input-full {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.btn-full {
  width: 100%;
}

.centered-divider {
  text-align: center;
  margin: 10px 0;
  color: #ccc;
}

.email-error {
  color: #ff4646;
  text-align: center;
  margin-top: 10px;
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  position: relative;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  color: #888;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  color: #ff4618;
}

.modal .btn {
  width: 100%;
  margin: 20px 0 0;
}

.modal .email-error {
  display: none;
  margin-top: 12px;
}
