/* =========================
   PROPERTY FORM – PREMIUM UI
========================= */

/* Page Background (optional) */
body {
    background: #f4f6fb;
}

/* Form Card */
.property-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef0f5;
}

/* Form Title */
.property-form h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
    position: relative;
}

.property-form h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #5cbede;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* Label */
.property-form label {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    text-transform: capitalize;
    margin-bottom: 6px;
}

/* Input / Select / Textarea */
.property-form input,
.property-form select,
.property-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    transition: all 0.3s ease;
}

/* Hover */
.property-form input:hover,
.property-form select:hover,
.property-form textarea:hover {
    background: #ffffff;
}

/* Focus */
.property-form input:focus,
.property-form select:focus,
.property-form textarea:focus {
    border-color: #7bcfe2;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
    outline: none;
}

/* Select Arrow Fix */
.property-form select {
    cursor: pointer;
}

/* Textarea */
.property-form textarea {
    min-height: 120px;
    resize: none;
}

/* File Input */
.property-form input[type="file"] {
    background: #ffffff;
    padding: 8px;
    border: 2px dashed #d1d5db;
}

.property-form input[type="file"]:hover {
    border-color: #79d2eb;
}

/* Error Text */
.property-form .text-danger {
    font-size: 12px;
    margin-top: 5px;
}

/* Buttons */
.property-form .btn-danger {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    border: none;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.property-form .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.35);
}

.property-form .btn-secondary {
    padding: 12px 35px;
    border-radius: 30px;
}

/* Column spacing */
.property-form .col-md-4 {
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .property-form {
        padding: 20px;
    }
}
