/* Minimal Brown + Cream + Pastel Pink Theme */

body {
    background-color: #f7f1e8; /* cream */
    font-family: 'Segoe UI', sans-serif;
}

/* Form container */
.form-box {
    width: 550px;
    max-width: 95%;
    background-color: #fffaf5;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(92, 64, 51, 0.15);
}

/* Input styling */
.custom-input {
    border: 2px solid #e8dcd0;
    border-radius: 12px;
    padding: 12px;
    font-weight: 500;
}

.custom-input:focus {
    border-color: #c08a6d; /* brown */
    box-shadow: none;
}

/* Button styling */
.custom-btn {
    background-color: #d9a5b3; /* pastel pink */
    border: none;
    padding: 12px;
    border-radius: 12px;
    color: #4b2e2e; /* deep brown */
    letter-spacing: 1px;
}

.custom-btn:hover {
    background-color: #c08a6d; /* brown hover */
    color: white;
}

/* Error text */
.error-text {
    color: #a94442;
    font-size: 13px;
    font-weight: 500;
}