* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nexa", Arial, Helvetica, sans-serif;
}

*, ::after, ::before {
  box-sizing: border-box;
}

@font-face {
  font-family: Nexa;
  src: url(./NexaLight.otf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Nexa;
  src: url(NexaBold.otf);
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f0f2f5, #d6e0f0);
  color: #333;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
 
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a237e;
  font-size: 2rem;
  
}

form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #2e3c61;
  font-size: 0.95rem;
}

input,
select {
  margin-top: 0.5rem;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  border-color: #1a73e8;
  outline: none;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.1);
}

button {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #1558c0;
}

@media (max-width: 640px) {
  form {
    padding: 1rem;
    border-radius: 8px;
  }

  h1 {
    font-size: 1.5rem;
  }

  button {
    width: 100%;
  }
}
