/* === General Reset === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #fff5e1 0%, #fdebd3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Form Wrapper === */
.form-wrapper {
    padding: 30px 15px;
    width: 100%;
}

/* === Form Card === */
.form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px;
    width: 100%;
    max-width: 550px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f2e4d7;
    transition: all 0.3s ease-in-out;
}

.form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* === Title === */
.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #5e3f16;
    text-align: center;
    margin-bottom: 25px;
}

/* === Form Layout === */
.customer-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #5e4b3b;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d9c4b3;
    font-size: 1rem;
    background-color: #fffdfb;
    transition: all 0.25s ease;
}

.form-group input::placeholder {
    color: #b9a898;
    font-style: italic;
}

.form-group input:focus {
    outline: none;
    border-color: #c49a6c;
    box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.25);
}

/* === Buttons === */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}

.btn-submit,
.btn-cancel {
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* === Submit Button === */
.btn-submit {
    background: linear-gradient(to right, #1f7a40, #166534);
    color: white;
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(to right, #14532d, #104327);
}

/* === Cancel Button === */
.btn-cancel {
    background-color: #f0f0f0;
    color: #444;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.btn-cancel:hover {
    background-color: #d8d8d8;
}

/* === Active Click Feedback === */
.btn-submit:active,
.btn-cancel:active {
    transform: scale(0.98);
}

/* === Mobile Friendly === */
@media (max-width: 600px) {
    .form-card {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 1.7rem;
    }
}
