.form-field {
    margin-bottom: 1rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 6px;
}

.form-control {
    display: block;
    width: 100%;
    height: 38px;
    padding: 0 12px;
    font-size: 14px;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:hover {
    border-color: #adb5bd;
}

.form-control:focus {
    border-color: #378add;
    box-shadow: 0 0 0 3px rgba(55, 138, 221, 0.15);
}

/* error state — 配合 Alpine.js x-if errors */
.form-control.is-invalid {
    border-color: #e24b4a;
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.15);
}

.text-danger {
    text-align: left;
    font-size: 12px;
    color: #e24b4a;
    margin-top: 4px;
}


.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    height: 38px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #00abcb;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.15s ease-in-out, transform 0.1s ease-in-out;
}

.btn-submit:hover {
    background-color: #0099b5;
}

.btn-submit:active {
    background-color: #007f97;
    transform: scale(0.98);
}

.btn-submit:disabled {
    background-color: #80d5e5;
    cursor: not-allowed;
}