/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

/* Body */
body{
    background:linear-gradient(135deg,#eef2ff,#8ebfff);
    min-height:100vh;
}



/* Container */
.containerr{
    max-width:1100px;
    margin:40px auto;
    background:#eef3f7;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* Heading */
h2{
    text-align:center;
    color:#2563eb;
    margin-bottom:30px;
}

/* Form Row */
.form-row{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

/* Form Group */
.form-group{
    flex:1 1 calc(50% - 20px);
    display:flex;
    flex-direction:column;
}

/* Labels */
label{
    font-weight:600;
    margin-bottom:8px;
    color:#374151;
}

.form-label .required-asterisk {
    color: red !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

/* Inputs */
.form-control{
    width:100%;
    padding:12px 15px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    font-size:15px;
    transition:0.3s;
}
  

.form-control:focus{
    border-color:#2563eb;
    outline:none;
    box-shadow:0 0 8px rgba(37,99,235,0.3);
}


.upload-feedback {
    margin-top: 12px;
    display: flex;
    flex-direction: column; /* Stacks image, progress bar, and success message vertically */
    gap: 10px;
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

.preview-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.preview-wrapper img {
    max-width: 90px;
    max-height: 90px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    object-fit: contain;
    background-color: #f8fafc;
}

.progress-container {
    width: 100%;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    border-radius: 4px;
    transition: width 0.2s ease-in-out;
}

.upload-status {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #374151;
}

.status-success {
    color: #155724;
}

.status-error {
    color: #721c24;
}

/* Checkbox */
.checkbox-group{
    margin-top:25px;
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#555;
}

/* Button */
.submit-btn{
    width:40%;
    margin-top:25px;
    padding:14px;
    border:none;
    border-radius:8px;
    background:linear-gradient(90deg,#2563eb,#06b6d4);
    color:#fff;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(37,99,235,0.3);
}

/* Mobile Responsive */
@media(max-width:768px){

    .form-group{
        flex:1 1 100%;
    }

    .containerr{
        margin:20px;
        padding:20px;
    }

    .navbar{
        text-align:center;
    }
}
.success-message{
    background:#d4edda;
    color:#155724;
    padding:12px;
    border-radius:5px;
    margin-bottom:20px;
    text-align:center;
    font-weight:bold;
}

select.form-control{
    width:100%;
    padding:12px 15px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    font-size:15px;
    background: #f9f9fa;                                                                                                        around:#fff;
    cursor:pointer;
}

select.form-control:focus{
    border-color:#2563eb;
    outline:none;
    box-shadow:0 0 8px rgba(37,99,235,0.3);
}

.iti{
    width:100%;
}

.iti__country-list{
    border-radius:8px;
    font-size:14px;
}

.iti input{
    width:100%;
}

.phone-input{
            width:100%;
            padding:10px;
        }
        
    /* Header */
.navbar{
    background:linear-gradient(90deg,#f5f5f700,#f9fafa00);
    padding:15px 40px;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.nav-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:25px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.nav-links a:hover{
    opacity:.8;
}


/* 9. Form Panel Footer */
.reseller-footer {
    margin-top: auto; /* Pushes the footer cleanly to the bottom of the card */
    padding-top: 15px;
    text-align: center;
    border-top: 1px solid rgba(8, 82, 241, 0.856);
}

.reseller-footer p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #0a87f5;
    letter-spacing: 0.5px;
}

.header-message {
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.duplicate-message {
    background: #f8d7da;
    color: #721c24;
}