/* Player Registration Page Specific Styles - Premium Redesign */

:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(59, 22, 91, 0.35), rgba(59, 22, 91, 0.7));
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Form Container */
.registration-container {
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.form-sidebar {
    background: var(--primary);
    padding: 60px 40px;
    color: var(--white);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0.6;
}

.step-item.active {
    opacity: 1;
}

.step-num {
    width: 35px;
    height: 35px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item.active .step-num {
    background: var(--orange);
    border-color: var(--orange);
}

.form-main {
    padding: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.1);
}

/* Grid for Form */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Upload Box */
.upload-box {
    border: 2px dashed #ddd;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.upload-box:hover {
    border-color: var(--orange);
    background: #fff9f5;
}

.upload-box i {
    font-size: 40px;
    color: var(--orange);
    margin-bottom: 15px;
}

/* Instruction Box */
.instruction-box {
    background: #fff3e0;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--orange);
    margin-bottom: 40px;
}

.instruction-box h4 {
    color: #e65100;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .registration-container { grid-template-columns: 1fr; }
    .form-sidebar { display: none; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .form-main { padding: 30px; }
    .banner-title { font-size: 38px; }
}
