@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  background-color: #fff9e6;
  font-family: "Kiwi Maru", "M PLUS Rounded 1c", sans-serif;
  color: #5d4037;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh; }

.cover_img_box {
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
  line-height: 0; }
  .cover_img_box img {
    width: 100%;
    height: auto;
    border-bottom: 8px solid #ff9800;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }

.form_box {
  width: 90%;
  max-width: 400px;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.05);
  border: 4px solid #ffd699;
  box-sizing: border-box; }
  .form_box form {
    display: flex;
    flex-direction: column;
    gap: 25px; }

.form_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; }
  .form_row label {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center; }
    .form_row label::before {
      content: '✏️';
      margin-right: 8px; }
  .form_row .note {
    text-align: center;
    font-size: 0.9rem;
    color: #5d4037; }
  .form_row input[type="text"] {
    width: 100%;
    padding: 15px;
    font-size: 1.4rem;
    border: 3px solid #ddd;
    border-radius: 15px;
    text-align: center;
    box-sizing: border-box;
    background-color: #fdfdfd;
    outline: none;
    transition: border-color 0.3s; }
    .form_row input[type="text"]:focus {
      border-color: #ff9800;
      background-color: #fff; }
  .form_row button {
    width: 100%;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #4caf50;
    border: none;
    border-bottom: 6px solid #357a38;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Kiwi Maru", "M PLUS Rounded 1c", sans-serif; }
    .form_row button:active {
      transform: translateY(4px);
      border-bottom-width: 2px; }
    .form_row button::after {
      content: ' ✨'; }

/*# sourceMappingURL=style.css.map */
