* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    flex: 1;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 50%, #DC143C 100%);
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,215,0,0.1) 25%, transparent 25%, transparent 75%, rgba(255,215,0,0.1) 75%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Hero Left */
.hero-left {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-left {
        text-align: left;
    }
}

.logo-main {
    height: 6rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .logo-main {
        height: 8rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(0,0,0,0.9);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.partnership {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding-top: 1.5rem;
}

@media (min-width: 1024px) {
    .partnership {
        justify-content: flex-start;
    }
}

.partnership span {
    color: #000000;
    font-weight: 600;
    font-size: 1.125rem;
}

.logo-partner {
    height: 4rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* Form Card */
.hero-right {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-right {
        justify-content: flex-end;
    }
}

.form-card {
    background-color: #1a1a1a;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 28rem;
    border: 2px solid rgba(255,215,0,0.3);
}

.form-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 1rem 1rem 0 0;
    text-align: center;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* Success Message */
.success-message {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-message h3 {
    color: #22c55e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: rgba(255,255,255,0.8);
}

/* Form */
.registration-form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #FFD700;
    color: #000000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,215,0,0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 2rem 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.footer-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
}
