/* ===============================
   Global Styles
================================= */

/*
* {
    box-sizing: border-box;
}
*/

/*
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    padding: 40px;
    background: linear-gradient(to right, #eef2f7, #f8fafc);
    color: #333;
}
*/

/* ===============================
   Page Title
================================= */

/*
h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #1e3a8a;
}
*/

/* ===============================
   Sections (Cards)
================================= */

.section {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/*
h2 {
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    color: #1f2937;
    font-size: 20px;
}
*/

/* ===============================
   Form Layout
================================= */

.row_row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.col {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
}

/* ===============================
   Inputs
================================= */
@media (min-width: 1200px) {
    input[name=applicantZip],
    input[name=contractorZip] {
        max-width: 223.344px;
    }
}

/*
label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}
*/

/*
input,
select,
textarea {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea {
    resize: vertical;
    min-height: 100px;
}
*/

/* Focus Effect */

/*
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
*/

/* ===============================
   File Inputs
================================= */
/* File upload container */
#fileUploads {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Each file row */
.file-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* File input */
.file-input {
  flex: 1;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
}

/* Remove button (small icon style) */
.remove-btn {
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.remove-btn:hover {
  background: #c0392b;
}

/* Warning text */
.file-warning {
  display: block;
  font-size: 12px;
  color: red;
  margin-left: 5px;
}

/* Add button styling */
#addFileBtn {
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 14px;
  background: #eef3ff;
  color: #2d5bd1;
  border: 1px dashed #2d5bd1;
  border-radius: 6px;
  cursor: pointer;
}

#addFileBtn:hover {
  background: #dce6ff;
}

/* ===============================
   Submit Button
================================= */

/*
button {
    display: block;
    margin: 40px auto 0 auto;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(to right, #2563eb, #1e40af);
    color: white;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(to right, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

button:active {
    transform: translateY(0);
    box-shadow: none;
}
*/

/* ===============================
   Responsive Design
================================= */

@media (max-width: 768px) {
/*
    body {
        padding: 20px;
    }
*/

    .row_row {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}
