.request-form{
    max-width: 700px;
    margin: 2rem auto;
    padding: 20px;
    background: #222;
    border: 2px solid gold;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 215, 0,0.3);

    margin-top: 2rem;
    margin-bottom: 2rem;
}

h1{
    color: gold;
    text-align: center;
    margin-bottom: 20px;
}

.intro{
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color:#ccc;
}

form{
    display: flex;
    flex-direction: column;
}

label{
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: gold;
}

input,select,textarea{
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #333;
    color: #eee;
    font-size: 14px;
}

input:focus,select:focus,textarea:focus{
    outline: none;
    background-color:#B8860B;
    box-shadow: 0 0 5px raba(255,215,0,0.5);
}

textarea{
    resize: vertical;
}

button{
    margin-top: 20px;
    padding: 12px;
    background: gold;
    color: #111;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover{
    background: #FFD700;
}

#furigana{
    letter-spacing: 2px;
    font-weight: bold;
}

.required-note {
   
  color: #ff5555;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center; 
}

.required {
  background-color:#ED1A3D;  
  color: white;
  font-size: 0.9em;
  margin-left: 6px;
  padding-left: 3px;
  padding-right: 3px;
  border-radius: 4px;
}
@media(max-width:768px){
    .request-form{
        width: 92%;
        max-width: 100%;
        margin: 1.5rem auto;
        padding: 16px;
        border-radius: 12px;
    }

    h1{
        font-size:22px;
    }

    .intro{
        font-size: 13px;
    }

    label{
        font-size: 14px;
    }

    input,
    select,
    textarea{
        font-size: 16px;
        padding: 12px;
    }

    textarea{
        min-height: 120px;
    }

    button{
        font-size:16px;
        padding: 14px;
    }

    .required-note{
        font-size: 13px;
    }
}