<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#formContainer form {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* è¡¨å•é¡¹ */
#formContainer .form-group {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    line-height: 40px;
    box-sizing: border-box;
    background: transparent;
    border-radius: 8px;
    border: 2px solid rgba(221, 181, 91, 0.6);
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

/* è¡¨å•é¡¹ï¼šlabel */
#formContainer .form-group .labelText {
    font-size: 14px;
    color: rgba(196, 171, 105, 1);
    padding-right: 8px;
}

/* è¡¨å•é¡¹: input */
#formContainer .form-group .form-control {
    flex: 1;
    height: 40px;
    line-height: 40px;
    color: rgba(180, 168, 164, 0.8);
    font-size: 12px;
    background: transparent;
    margin: 0;
    padding: 0;
    border: 0px solid transparent;
}

#formContainer .form-group .form-control:focus-visible {
    border: 0px solid transparent;
    outline: none;
}

/* è¡¨å•é¡¹ï¼šinput-å&nbsp;ä½ç¬¦ */
#formContainer .form-group .form-control::placeholder {
    line-height: 40px;
    color: rgba(180, 168, 164, 0.8);
    font-size: 12px;
}

/* æŒ‰é’® */
#formContainer form .btn {
    width: 140px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    text-align: center;
    color: #ffffff;
    background: #C39E3A;
    border-radius: 6px;
    border: 0px;
}</pre></body></html>