.vrf-container {
    max-width: 980px;
    margin: 30px auto;
    padding: 10px
}

.vrf-title {
    text-align: center;
    color: #163a6b;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 30px
}

.vrf-steps {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px
}

.vrf-step {
    background: #fff;
    border: 1px solid transparent;
    padding: 10px 18px;
    border-radius: 24px;
    cursor: pointer
}

.vrf-step.active {
    background: #ef2927;
    color: #fff;
    border-color: #ef2927
}

.vrf-form {
    background: #fff;
    padding: 10px
}

.vrf-section-title {
    text-align: center;
    color: #7a7a7a;
    margin-bottom: 20px;
    font-size: 22px
}

.vrf-row {
    margin: 12px 0;
    display: block
}

.vrf-row label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px
}

.vrf-row input[type="text"],
.vrf-row input[type="email"],
.vrf-row select,
.vrf-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px
}

.vrf-row-inline {
    display: flex;
    gap: 10px
}

.vrf-row-inline>div {
    flex: 1
}

.vrf-checks label {
    display: inline-block;
    margin-right: 14px
}

.vrf-actions {
    margin-top: 24px;
    text-align: center
}

.vrf-actions button {
    background: #ef2927;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 24px;
    cursor: pointer;
    margin: 6px
}

.vrf-invalid {
    border-color: #ef2927 !important;
    box-shadow: 0 0 0 2px rgba(239, 41, 39, 0.08)
}

.vrf-error {
    display: block;
    color: #ef2927;
    font-size: 12px;
    margin-top: 4px;
}

/* Radio and checkbox required field highlighting */
.vrf-row.vrf-field-required {
    border-left: 3px solid #ef2927;
    padding-left: 10px;
    background: rgba(239, 41, 39, 0.03);
}

.vrf-row.vrf-field-required > label:first-child {
    color: #ef2927;
    font-weight: 500;
}

#vrf-message {
    margin-top: 12px;
    text-align: center
}

/* Toast Notifications */
.vrf-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 350px;
}

.vrf-toast-show {
    opacity: 1;
    transform: translateX(0);
}

.vrf-toast-success {
    background: #28a745;
}

.vrf-toast-error {
    background: #ef2927;
}

.vrf-toast-info {
    background: #17a2b8;
}

/* Download Link Styling */
.vrf-download-link {
    display: inline-block;
    padding: 8px 16px;
    background: #17a2b8;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.vrf-download-link:hover {
    background: #138496;
}

@media(max-width:720px) {
    .vrf-row-inline {
        flex-direction: column
    }

    .vrf-container {
        padding: 10px
    }

    .vrf-toast {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Loader Overlay */
.vrf-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.vrf-loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #ef2927;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: vrf-spin 1s linear infinite;
}

@keyframes vrf-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vrf-loader-text {
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
}
}