/* Reset and General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  position: relative;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* First Curve - Double Curve */
.curvy-background {
  display: flex;
  width: 100%; /* Full width of the page */
  height: 350px; /* Adjust the height for the curve */
  background-size: cover; /* Ensure background image covers the area */
  background-color: #fff;
  background-image: url(./curve.png); /* Add the curve image */
  background-repeat: no-repeat;
  background-position-y: -150px; /* Adjust to position the curve correctly */
  z-index: -1; /* Behind the content */
  position: absolute;
  top: 0;
  left: 0;
}

/* Content (form container) */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Content remains above background */
  margin-top: 100px; /* Adjust to place content below the curve */
}

/* Header */
.lock-icon {
  width: 50px;
  height: 50px;
  display: block;
  margin: 20px auto;
}

/* Form Container */
.form-container {
  margin: 0 auto;
  width: 300px;
  text-align: left;
}

.label {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  display: block;
  text-align: center;
}

.input-field {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
}

.submit-button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #2b6cb0;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
}

.submit-button:hover {
  background-color: #1a4f84;
}

/* Footer */
footer {
  text-align: center;
  font-size: 14px;
  color: #888;
  padding: 10px 0;
  background: #ffffff;
}
