 .auth-fluid .auth-fluid-form-box{
    padding:1.2rem;
    max-width:650px;
}
.fs-xs { font-size: 0.72rem; }
.auth-fluid { min-height: 100vh; }

.form-body-wrapper { 
    max-height: 70vh; 
    overflow-y: auto;   
    overflow-x: hidden;
    padding-right: 10px;
}

.form-body-wrapper::-webkit-scrollbar { width: 4px; }
.form-body-wrapper::-webkit-scrollbar-thumb { background: #eef2f7; border-radius: 10px; }

.step-node {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
    background: #fff;
    border: 2px solid #eef2f7;
    color: #98a6ad;
    transition: all 0.3s ease;
}
.step-node.active { border-color: #727cf5; background: #727cf5; color: #fff; box-shadow: 0 0 10px rgba(114, 124, 245, 0.4); }
.step-node.completed { border-color: #0acf97; background: #0acf97; color: #fff; }

.step-indicator-container { position: relative; display: flex; justify-content: space-between; margin-bottom: 1.5rem; }
.step-line {
    position: absolute; top: 16px; left: 0; right: 0;
    height: 2px; background: #eef2f7; z-index: 1;
}
.step-line-fill {
    position: absolute; top: 0; left: 0; height: 100%;
    background: #727cf5; width: 0%; transition: width 0.4s ease;
}

.fade-in-up { animation: fadeInUp 0.4s ease forwards; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-label { margin-bottom: 0.3rem; color: #6c757d; font-weight: 600; }

    /* Matches your existing label style */
.field-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

/* Matches your existing input border/radius */
.upload-box {
    border: 1px dashed #d1d5db;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    background-color: #fafafa;
    cursor: pointer;
    transition: 0.2s;
}

.upload-box:hover {
    border-color: #0047AB; /* Your primary blue */
    background-color: #f0f7ff;
}

.upload-content p {
    font-size: 13px;
    color: #888;
    margin: 5px 0 0 0;
}

.upload-icon {
    font-size: 24px;
    color: #0047AB;
    font-weight: bold;
}

/* The Preview Grid */
.preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.preview-card {
    position: relative;
    width: 70px;
    height: 70px;
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.remove-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4d4d;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
    border: none;
}
