@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4fcf6; /* Very light green tint */
}

.header-section {
    background: linear-gradient(135deg, #198754 0%, #105934 100%);
}

.card {
    border-radius: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.section-title {
    color: #105934 !important;
}

.upload-box {
    background-color: #f8f9fa;
    border: 2px dashed #ced4da !important;
    transition: all 0.3s ease;
}

.upload-box:hover {
    border-color: #198754 !important;
    background-color: #eafbee;
}

.doc-icon {
    transition: color 0.3s;
}

.upload-box:hover .doc-icon {
    color: #198754 !important;
}

.signature-font {
    font-family: 'Great Vibes', cursive;
}

.signature-input {
    background-color: #fbfbfb;
    border-bottom: 2px solid #198754;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.signature-input:focus {
    background-color: #fff;
    box-shadow: none;
    border-bottom: 2px solid #105934;
}

.progress {
    background-color: #e9ecef;
    border-radius: 1rem;
}
