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

 body {
     background-color: #e6e6e6;
     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: flex-start;
     padding: 75px 20px 40px;
 }

 .card {
     background: #ffffff;
     border-radius: 24px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
     padding: 48px;
     width: 100%;
     max-width: 420px;
 }

 h1 {
     text-align: center;
     font-size: 32px;
     font-weight: bold;
     color: #000000;
     margin: 0 0 24px 0;
     width: 100%;
 }

 h1 .dot {
     font-family: Georgia, serif;
     color: #23a219;
 }

 h2 {
     text-align: center;
     width: 100%;
     font-size: 24px;
     font-weight: bold;
     color: #000000;
     margin: 0 0 18px 0;
 }

h2 .dot {
     font-family: Georgia, serif;
     color: #23a219;
 }

 p {
     font-size: 16px;
     color: #333;
     margin-bottom: 14px;
     line-height: 1.3;
 }

 .spacer {
     margin-bottom: 24px;
 }

label {
     display: block;
     font-size: 16px;
     font-weight: bold;
     color: #000000;
     margin-bottom: 8px;
 }

 a {
     color: #23a219;
     text-decoration: none;
 }

 a:hover,
 a:active {
     color: #23a219;
     text-decoration: underline;
 }

 ul {
     padding-left: 14px;
     margin-bottom: 12px;
 }

 li {
     font-size: 16px;
     color: #333;
     line-height: 1.3;
     margin-bottom: 12px;
 }

 li::marker {
     color: #23a219;
     font-size: 1.1em;
 }

 input {
     display: block;
     width: 100%;
     padding: 14px;
     margin-bottom: 20px;
     font-size: 15px;
     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     border: 1.5px solid #e0e0e0;
     border-radius: 10px;
     text-align: center;
 }

 input:focus {
     outline: none;
     border-color: #23a219;
 }

 button {
     background-color: #23a219;
     color: #ffffff;
     font-size: 18px;
     font-weight: bold;
     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     padding: 16px;
     border: none;
     border-radius: 10px;
     cursor: pointer;
     width: 100%;
     text-align: center;
 }

 button:hover {
     background-color: #1d8815;
 }

 .btn {
     display: block;
     background-color: #23a219;
     color: #ffffff;
     font-size: 18px;
     font-weight: bold;
     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     padding: 16px;
     border: none;
     border-radius: 10px;
     cursor: pointer;
     width: 100%;
     text-align: center;
     text-decoration: none;
 }

 .btn:hover {
     background-color: #1d8815;
     color: #ffffff;
     text-decoration: none;
 }

 .btn-disabled {
     display: block;
     background-color: #cccccc;
     color: #888888;
     font-size: 18px;
     font-weight: bold;
     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     padding: 16px;
     border: none;
     border-radius: 10px;
     width: 100%;
     text-align: center;
     text-decoration: none;
     cursor: not-allowed;
 }

  .btn-disabled:hover {
     background-color: #999999;
     color: #ffffff;
     text-decoration: none;
 }
