/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #121426;
    font-weight: 600;
    font-size: 14px;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #FFFFFF;
    color: #121426;
    transition: all 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #C9B37E;
    box-shadow: 0 0 0 4px rgba(201, 179, 126, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    width: auto;
    height: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.password-toggle:hover {
    color: #C9B37E;
    background: transparent;
    transform: translateY(-50%);
    box-shadow: none;
}

/* Order Input */
.order-input {
    width: 120px;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.order-input:focus {
    outline: none;
    border-color: #C9B37E;
    box-shadow: 0 0 0 3px rgba(201, 179, 126, 0.1);
}

/* Buttons */
button {
    width: 100%;
    padding: 14px;
    background: #C9B37E;
    color: #121426;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background: #d4c390;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 179, 126, 0.3);
}

.btn-primary {
    background: #C9B37E;
    color: #121426;
}

.btn-primary:hover {
    background: #d4c390;
}

.btn-secondary {
    background: #121426;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: #1f2138;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 20, 38, 0.3);
}

.btn-small {
    width: auto;
    padding: 8px 16px;
    font-size: 13px;
    margin: 4px;
}

.btn-edit {
    background: #C9B37E;
    color: #121426;
    border: 2px solid #C9B37E;
}

.btn-edit:hover {
    background: #d4c390;
    border-color: #d4c390;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 179, 126, 0.3);
}

.btn-delete {
    background: #FFFFFF;
    color: #121426;
    border: 2px solid #121426;
}

.btn-delete:hover {
    background: #121426;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 20, 38, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
