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

body {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(37, 37, 37, 1) 100%
  );
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 20px 50px;
  background-color: #101010;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: right;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16 px;
}

.auth-buttons {
  display: flex;
  align-items: right;
  border: 2px solid #22f02b;
  border-radius: 30px;
  padding: 2px;
  background: black;
}

.auth-buttons .login-btn,
.signup-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

.login-btn {
  color: white;
  background: black;
}

.signup-btn {
  background: linear-gradient(to right, #22f02b, #f6f335);
  color: black;
  margin-left: -5px; /* Overlaps with the login button */
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  margin-bottom: 0;
  height: auto;
}

.login-box {
  background-color: #151515;
  padding: 40px; /* Increase padding */
  border-radius: 15px; /* Increase border-radius */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5); /* More shadow */
  width: 1000px; /* Increase width */
}

.login-title {
  font-size: 3rem; /* Increase font size */
  color: #22f02b;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.login-subtitle {
  margin: 15px 0 25px; /* Increase margin */
  font-size: 1.3rem; /* Increase font size */
  color: #bdbdbd;
  font-weight: 300;
}

.form-group {
  margin-bottom: 25px; /* Increase margin */
}

.form-group label {
  display: block;
  font-size: 1rem; /* Increase font size */
  color: #bdbdbd;
  margin-bottom: 8px; /* Increase margin */
  font-weight: 300;
}

.form-group input {
  width: 100%;
  padding: 15px; /* Increase padding */
  border-radius: 5px;
  border: 1px solid #bdbdbd;
  background-color: #1a1a1a;
  color: white;
  font-size: 1.1rem; /* Increase font size */
  font-weight: 300;
}

.forgot-password {
  text-align: right;
  margin-bottom: 25px; /* Increase margin */
  font-weight: 300;
}

.forgot-password a {
  color: #22f02b;
  text-decoration: none;
  font-weight: 300;
}

.btn-login {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  background: linear-gradient(to right, #22f02b, #f6f335);
  color: black;
  border: none;
  font-size: 1.32em;
  cursor: pointer;
  font-weight: bolder;
  margin-bottom: 20px;
  font-family: "Urbanist", sans-serif;
  word-spacing: 1px;
}

.btn-login a {
  width: 100%;
  padding: 15px; /* Increase padding */
  border-radius: 5px;
  background: transparent;
  color: black;
  border: none;
  font-size: 1.2rem; /* Increase font size */
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 25px; /* Increase margin */
}

.continue-with {
  text-align: center;
  color: #bdbdbd;
  margin-bottom: 20px; /* Increase margin */
}

.btn-google {
  width: 100%;
  padding: 12px; /* Increase padding */
  background-color: white;
  border: none;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem; /* Increase font size */
}

.google-icon {
  width: 25px; /* Increase icon size */
  margin-right: 12px; /* Increase margin */
}

.new-user {
  text-align: center;
  margin-top: 25px; /* Increase margin */
  color: #bdbdbd;
}

.new-user a {
  color: #22f02b;
  text-decoration: none;
}

.icon-placeholder {
  flex: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.svg-placeholder {
  width: 350px; /* Increase width */
  height: 350px; /* Increase height */
  border: 2px dashed #22f02b;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #22f02b;
  font-size: 1.5rem;
}

a:hover,
button:hover {
  cursor: pointer;
}
