* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Maison Neue';
  background-color: #F7F7F9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
}

h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2B2D39;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #2B2D39;
  text-align: left;
}


button {
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

button:not(:disabled) {
  background-color: #040613;
  color: white;
}

button:disabled {
  background-color: #E9EAEF;
  color: #A0A3A8; 
  cursor: not-allowed;
}

button:hover {
  opacity: 0.9;
}
button:focus {
  outline: 2px solid #A0A3A8;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4485BA;
  margin-bottom: 8px;
}

.caption {
  font-size: 12px;
  font-weight: 300;
  color: #5D637D;
  margin-top: 8px;
}

.container {
    gap: 20px;
    padding: 24px;
    display: flex;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    flex-direction: column;
}

.form-box {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  width: 100%;
  text-align: left; 
}

.form-group {
  margin-bottom: 32px;
  text-align: left;
}

.form-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 20px;
}

#pin-container {
  width: 75%;
  height: 48px;
}

#pan-container {
  width: 100%;
  height: 48px;
}

.pin, .pan {
  font-family: inherit;
  color: inherit;
  border: 1px solid #A6AABD;
  padding: 16px;
  border-radius: 12px;
  font-size: 11px;
  display: block;
  text-align: left;
}

/* .pin { */
/*   font-family: "password"; */
/*   text-security: disc; */
/*   -webkit-text-security: disc; */
/* } */

.pin::placeholder, .pan::placeholder {
  text-color: #A6AABD;
}

pin:focus, pan:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
  border-color: #007bff;
}

.message {
  width: 552px;
  padding: 32px;
  padding: 32px;
  text-align: center;
  border-radius: 16px;
  background-color: white;
}

.message .icon {
  margin-bottom: 24px;
}

.message .circle {
  width: 70px;
  height: 70px;
  display: flex;
  margin: 0 auto;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #B5F6E6;
}

.message .checkmark {
  color: #16AA87;
  font-size: 32px;
}

.message h1 {
  color: #44485B;
  font-size: 24px;
  margin-bottom: 16px;
}

.message p {
  color: #5D637D;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 16px;
}

