/* Container & Card - Login Form jesa Clean Look */
.uv-signup-wrapper {
    display: flex; 
    justify-content: center; 
    align-items: center;
    padding: 10px 0; /* Padding kam ki gayi hai */
    font-family: 'Montserrat', sans-serif;
    background-color: transparent; 
    min-height: auto; /* Height fix */
    box-sizing: border-box;
    width: 100%;
}

.uv-signup-card {
    background: transparent; /* White background hataya taaki parent container jesa dikhe */
    width: 100%; 
    max-width: 450px;
    padding: 0 10px; /* Padding login form jesi kam kar di */
    border-radius: 0;
    box-shadow: none; /* Shadow hatayi */
    border: none; /* Border hataya */
    position: relative;
    overflow: visible;
}

/* --- Social Buttons (Login Page Style) --- */
.uv-social-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.uv-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    min-height: 40px;
}

.uv-social-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-color: #d0d0d0;
}

.uv-social-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Divider */
.uv-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #a0aec0;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.uv-divider::before, .uv-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}
.uv-divider:not(:empty)::before { margin-right: 1em; }
.uv-divider:not(:empty)::after { margin-left: 1em; }

/* Header - Compact */
.uv-signup-header { 
    text-align: center; 
    margin-bottom: 15px; 
}
.uv-signup-header h2 { 
    margin: 0; 
    color: #003D3F; 
    font-family: 'Alegreya Sans SC', sans-serif; 
    font-weight: 700; 
    font-size: 22px; /* Font size thoda chhota kiya height bachane ke liye */
    text-transform: uppercase;
    letter-spacing: 1px;
}
.uv-signup-header p { 
    margin: 2px 0 0; 
    font-size: 12px; 
    color: #777; 
}

/* Steps */
.uv-step { display: none; animation: slideIn 0.3s ease-out; }
.uv-step.active { display: block; }

/* Inputs - Compact Margins */
.uv-input-group { margin-bottom: 12px; text-align: left; }
.uv-input-group label { display: block; font-size: 12px; font-weight: 600; color: #4a5568; margin-bottom: 4px; }
.uv-input-group input, .uv-input-group select {
    width: 100%; padding: 10px 12px; border: 1px solid #dcdfe6;
    border-radius: 6px; font-size: 14px; box-sizing: border-box;
    transition: all 0.2s; background: #fff; color: #333;
}
.uv-input-group input:focus, .uv-input-group select:focus {
    border-color: #003D3F; background: #fff; outline: none;
    box-shadow: 0 0 0 3px rgba(0, 61, 63, 0.1);
}

/* Trading Fields Animation */
#trading-fields { animation: fadeIn 0.4s ease; border-left: 3px solid #003D3F; padding-left: 10px; margin-bottom: 10px; }

/* Buttons */
.uv-btn-primary, .uv-btn-success, .uv-btn-secondary {
    width: 100%; padding: 12px; border: none; border-radius: 6px;
    font-weight: 700; cursor: pointer; font-size: 14px;
    text-transform: uppercase; letter-spacing: 0.5px; transition: 0.2s;
    margin-top: 5px;
}
.uv-btn-primary { background: #003D3F; color: #fff; }
.uv-btn-primary:hover { background: #002a2b; transform: translateY(-1px); }

.uv-btn-success { background: #28a745; color: #fff; }
.uv-btn-success:hover { background: #218838; transform: translateY(-1px); }

.uv-btn-secondary { background: #f1f1f1; color: #555; }
.uv-btn-secondary:hover { background: #e0e0e0; }

/* Utility */
.uv-step-info { background: #e0f2f1; color: #00695c; padding: 8px; border-radius: 6px; text-align: center; font-size: 12px; margin-bottom: 15px; }
.uv-link-action { color: #003D3F; text-decoration: underline; cursor: pointer; font-weight: 600; font-size: 11px; }
.uv-login-link { text-align: center; margin-top: 15px; font-size: 13px; color: #666; }
.uv-login-link a { color: #003D3F; font-weight: 700; text-decoration: none; }

/* Messages */
#uv-msg-box { margin-top: 10px; padding: 10px; border-radius: 6px; font-size: 12px; font-weight: 600; text-align: center; }
.msg-error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.msg-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }

@keyframes slideIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Mobile optimization */
@media (max-width: 480px) {
    .uv-signup-wrapper { padding: 5px; }
    .uv-signup-card { padding: 0; }
}