body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f6f8;
  min-height: 100vh;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.container {
  width: 430px;
  padding: 50px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin : 0;
}

h1 {
  text-align: center;
  margin-bottom: 24px;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #4461efc9;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #444;
}
button + button {
  margin-top: 12px;
}
p {
  text-align: center;
}

a {
  color: #0066cc;
  text-decoration: none;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(0, 0, 0, 0.4);

  justify-content: center;
  align-items: center;
}

.modal-content {
  width: 360px;
  padding: 30px;

  background-color: white;
  border-radius: 12px;
  text-align: center;
}
.modal-content select,
.modal-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;

  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}