  .section {
    text-align: center;
    padding: 20px;
    background: #f3ffef;
    color: #888888;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 12px;
  }

  .section h2 {
    font-size: 24px;
    color: #222;
    font-weight: bold;
    margin: 0 auto;
  }

.instruction {
  text-align: center;
  font-size: 14px;
  font-family: 'Mulish', sans-serif;
  width: 100%;
  margin: 15px 0;
}

  .form {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: #555555;
  }

  input[type="email"], input[type="password"], input[type="text"] {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 18px;
    color: #333;
    font-family: 'Mulish', sans-serif;
    height: 50px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    opacity: 1;
    text-indent: 15px;
  }

select {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 18px;
    color: #333;
    font-family: 'Mulish', sans-serif;
    height: 50px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 0 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

select:focus {
    outline: none;
    border-color: #1579c2;
    box-shadow: 0 0 0 1px #1579c2;
}

    .checkbox-container {
      display:flex; align-items:center; margin:10px 0;
      padding:5px 15px; background:#f8f8f8; border-radius:8px;
      font-size:14px; color:#555;
    }
    .checkbox-container input {
      flex-shrink:0; width:18px; height:18px;
      margin-right:10px; accent-color:#1579c2;
    }
    .checkbox-container a { color:#1579c2; text-decoration:none; }
    .checkbox-container a:hover { text-decoration:underline; }

  .form button {
    margin-top: 5px;
    padding: 10px;
    background: #1579c2;
    font-size: 18px;
    color: #fff;
    font-family: 'Mulish', sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 50px;
  }
  .form button:hover {
    background: #125a90;
  }


.bottomtext {
        text-align: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0 0 0;
        font-size: 14px;
        font-family: 'Mulish', sans-serif;
}

.bottomtext a {
	color: #0000CD;
	text-decoration: none;
}