* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #010a13;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.login-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    background-color: #010a13;
    display: flex;
    flex-direction: row;
}


.slideshow {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.slideshow-left {
    order: 1;
}

.slideshow-right {
    order: 3;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-text {
    position: absolute;
    bottom: 50px;
    right: 50px;
    max-width: 400px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.slideshow-left .slide-text {
    right: auto;
    left: 50px;
}


.content-wrapper {
    position: relative;
    z-index: 2;
    order: 2;
    width: 520px;
    flex: 0 0 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 25px 30px;
    background-color: #1e304d;
    scrollbar-width: thin;
    scrollbar-color: #3d5a80 transparent;
}

.content-wrapper::-webkit-scrollbar {
    width: 6px;
}

.content-wrapper::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.content-wrapper::-webkit-scrollbar-thumb {
    background: #3d5a80;
    border-radius: 3px;
}

.content-wrapper::-webkit-scrollbar-thumb:hover {
    background: #4a6d99;
}



.logo {
    margin-bottom: 40px;
}

.logo-img {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(200, 170, 110, 0.5));
}


.login-panel {
    width: 100%;
    max-width: 520px;
    height: 100%;
    text-align: center;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.login-panel .logo {
    flex: 0 0 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-footer {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid #3d5a80;
    padding-top: 10px;
}

.panel-footer .social-links {
    margin: 0 0 25px 0;
}

.panel-footer p {
    color: #8a9eb5;
    font-size: 10px;
    margin-bottom: 3px;
}

.panel-footer .copyright {
    color: #a0b4c8;
    font-size: 11px;
    margin-bottom: 5px;
}


.form-view {
    display: none;
    opacity: 0;
    width: 100%;
    flex: 0 0 65%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #3d5a80 transparent;
}

.form-view::-webkit-scrollbar {
    width: 6px;
}

.form-view::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.form-view::-webkit-scrollbar-thumb {
    background: #3d5a80;
    border-radius: 3px;
}

.form-view::-webkit-scrollbar-thumb:hover {
    background: #4a6d99;
}

.form-view.active {
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: viewSlideIn 0.25s ease-out forwards;
}

.form-section {
    width: 100%;
}

.form-header {
    text-align: center;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-inputs .input-group {
    margin-bottom: 0;
}

.form-inputs .form-actions {
    margin-top: 5px;
}

.form-inputs .form-links {
    margin: 0;
}

.form-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #3d5a80;
}

.form-cta .join {
    margin: 0;
    padding: 0;
    border: none;
}

.form-cta .social-links {
    margin: 0;
}

.form-view.exiting {
    display: block;
    animation: viewSlideOut 0.2s ease-in forwards;
}

@keyframes viewSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes viewSlideOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(60px);
    }
}


.form-title {
    color: #c8aa6e;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}


.form-description {
    color: #a09b8c;
    padding: 14px;
    background: rgba(200, 170, 110, 0.15);
    border: 1px solid rgba(200, 170, 110, 0.3);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 auto 20px;
    max-width: 400px;
    text-align: center;
}


.notification-area {
    margin-bottom: 15px;
    min-height: 0;
}

.notification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 0.5px;
    animation: fadeIn 0.3s ease;
}

.notification.error {
    background-color: rgba(200, 72, 72, 0.25);
    border: 1px solid #c84848;
    color: #ff6b6b;
}

.notification.success {
    background-color: rgba(72, 200, 100, 0.25);
    border: 1px solid #48c864;
    color: #6bff8a;
}

.notification.info {
    background-color: rgba(30, 150, 209, 0.25);
    border: 1px solid #1e96d1;
    color: #5bc0eb;
}

.notification-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
}


.input-group {
    margin-bottom: 3px;
}

.input-group label,
.input-group .input-label {
    display: block;
    color: #a0b4c8;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.input-group.inline-label {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 15px;
}

.input-group.inline-label label {
    margin-bottom: 0;
    white-space: nowrap;
    min-width: 50px;
}

.input-group.inline-label .input-wrapper {
    flex: 1;
    max-width: none;
    margin: 0;
}

.input-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #6b8aad;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
    color: #c8aa6e;
}

.input-group input:not(.code-input) {
    width: 100%;
    height: 46px;
    background-color: #0d1a2a;
    border: 1px solid #3d5a80;
    color: #f0e6d2;
    padding: 0 10px 0 42px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:not(.code-input):focus {
    border-color: #c8aa6e;
    box-shadow: 0 0 8px rgba(200, 170, 110, 0.4);
}

.input-group input::placeholder {
    color: #6b8aad;
    font-size: 14px;
}

.input-group.has-error .input-wrapper input,
.input-group.has-error .select-trigger {
    border-color: #c84848;
}

.error-tooltip {
    display: block;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(200, 72, 72, 0.15);
    border: 1px solid rgba(200, 72, 72, 0.3);
    border-radius: 4px;
    color: #e57373;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin: 12px;
    animation: fadeIn 0.3s ease;
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.code-input {
    width: 45px;
    height: 50px;
    background-color: #0d1a2a;
    border: 1px solid #3d5a80;
    color: #f0e6d2;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.code-input:focus {
    border-color: #c8aa6e;
    box-shadow: 0 0 8px rgba(200, 170, 110, 0.4);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

/* .step-actions {
    justify-content: space-between;
} */

.register-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1e2328;
    border: 2px solid #3c3c41;
    color: #5b5a56;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: linear-gradient(to bottom, #1e96d1 0%, #0a5a8a 100%);
    border-color: #0a7ab8;
    color: #fff;
}

.step-label {
    font-size: 10px;
    color: #5b5a56;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: #c8aa6e;
}

.progress-line {
    width: 40px;
    height: 2px;
    background: #3c3c41;
    margin-bottom: 20px;
}

.register-step {
    display: none;
}

.register-step.active {
    display: block;
    animation: viewSlideIn 0.25s ease-out forwards;
}

.step-description {
    color: #a09b8c;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(200, 170, 110, 0.15);
    border: 1px solid rgba(200, 170, 110, 0.3);
    border-radius: 4px;
}

.input-row {
    display: flex;
    gap: 15px;
}

.input-row .input-group {
    flex: 1;
}

.input-row .input-wrapper {
    max-width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.select-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    height: 42px;
    background-color: #0d1a2a;
    border: 1px solid #3d5a80;
    border-radius: 3px;
    padding: 0 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-trigger:hover {
    border-color: #5a7fa8;
    background-color: #132438;
}

.custom-select.open .select-trigger {
    border-color: #c8aa6e;
    box-shadow: 0 0 8px rgba(200, 170, 110, 0.25);
    border-radius: 3px 3px 0 0;
}

.select-trigger .input-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: #6b8aad;
    transition: color 0.3s ease;
}

.custom-select.open .select-trigger .input-icon,
.select-trigger:hover .input-icon {
    color: #c8aa6e;
}

.select-value {
    flex: 1;
    color: #f0e6d2;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-value.placeholder {
    color: #6b8aad;
}

.select-arrow {
    position: absolute;
    right: 12px;
    width: 14px;
    height: 14px;
    color: #c8aa6e;
    transition: transform 0.3s ease;
}

.custom-select.open .select-arrow {
    transform: rotate(180deg);
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0d1a2a;
    border: 1px solid #c8aa6e;
    border-top: none;
    border-radius: 0 0 3px 3px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.custom-select.open .select-dropdown {
    max-height: 250px;
    overflow-y: auto;
    opacity: 1;
}

.select-option {
    padding: 12px 15px 12px 40px;
    color: #a09b8c;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(60, 60, 65, 0.5);
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background: rgba(200, 170, 110, 0.1);
    color: #f0e6d2;
    padding-left: 45px;
}

.select-option.selected {
    background: rgba(200, 170, 110, 0.15);
    color: #c8aa6e;
}

.select-option.selected::before {
    content: '';
    position: absolute;
    left: 15px;
    width: 6px;
    height: 10px;
    border: solid #c8aa6e;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.select-dropdown::-webkit-scrollbar-track {
    background: #0d1a2a;
}

.select-dropdown::-webkit-scrollbar-thumb {
    background: #3d5a80;
    border-radius: 3px;
}

.select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #5a7fa8;
}

.birthday-fields {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.birthday-select {
    flex: 1;
    max-width: 120px;
}

.birthday-select .select-dropdown {
    max-height: 0;
}

.birthday-select.open .select-dropdown {
    max-height: 150px;
}

.birthday-select .select-trigger {
    padding: 0 30px 0 12px;
    justify-content: center;
}

.birthday-select .select-value {
    text-align: center;
}

.birthday-select .select-arrow {
    right: 8px;
    width: 12px;
    height: 12px;
}

.birthday-select .select-option {
    padding: 10px 12px;
    text-align: center;
}

.back-btn {
    background: transparent;
    border: 1px solid #3d5a80;
    border-radius: 3px;
    color: #a0b4c8;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.back-btn:hover {
    border-color: #5a7fa8;
    color: #f0e6d2;
}

.back-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gender-select {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.gender-option {
    flex: 1;
    max-width: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #0d1a2a;
    border: 1px solid #3d5a80;
    border-radius: 3px;
    color: #6b8aad;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gender-option svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    vertical-align: middle;
    margin-top: -2px;
}

.gender-option span {
    display: inline-flex;
    align-items: center;
}

.gender-option input {
    display: none;
}

.gender-option.active,
.gender-option:has(input:checked) {
    border-color: #c8aa6e;
    color: #c8aa6e;
    background: rgba(200, 170, 110, 0.1);
}

.avatar-select {
    display: flex;
    gap: 15px;
}

.avatar-option {
    width: 140px;
    height: 225px;
    border: 2px solid #3d5a80;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-option input {
    display: none;
}

.avatar-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-option.active,
.avatar-option:has(input:checked) {
    border-color: #c8aa6e;
    box-shadow: 0 0 10px rgba(200, 170, 110, 0.3);
}

.terms-checkbox {
    margin-top: 15px;
    padding: 15px;
    background: rgba(200, 170, 110, 0.15);
    border: 1px solid rgba(200, 170, 110, 0.3);
    
    
    border-radius: 4px;
    transition: all 0.3s ease;
}

.terms-checkbox span{
    color: #a09b8c;
}



.terms-checkbox.input-group label {
    display: inline-flex;
}

.recaptcha-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.recaptcha-overlay.active {
    display: flex;
}

.recaptcha-modal {
    position: relative;
    background: #121f33;
    border: 1px solid #3c3c41;
    border-radius: 8px;
    padding: 50px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(231, 76, 60, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 64px;
    transition: background-color 0.2s ease;
}

.modal-close-btn svg {
    width: 20px;
    height: 20px;
    stroke: #e74c3c;
}

.modal-close-btn:hover {
    background: rgba(231, 76, 60, 0.15);
}

.modal-close-btn:hover svg {
    stroke: #ff6b5b;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.recaptcha-title {
    color: #c8aa6e;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 35px 0;
}

.recaptcha-description {
    color: #a09b8c;
    border: 1px solid rgba(200, 170, 110, 0.3);
    background: rgba(200, 170, 110, 0.15);
    border-radius: 4px;
    padding: 14px;
    font-size: 13px;
    margin: 0 0 25px 0;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 0 0 20px 0;
}

.recaptcha-actions {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.recaptcha-actions .back-btn {
    padding: 10px 30px;
}

.terms-checkbox:has(input:checked) {
    border-color: #48c864;
    background: rgba(72, 200, 100, 0.08);
    box-shadow: 0 0 10px rgba(72, 200, 100, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #c8c4b8;
    line-height: 1.4;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid #3d5a80;
    border-radius: 3px;
    background: #0d1a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background: #48c864;
    border-color: #48c864;
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.login-btn {
    background: linear-gradient(to bottom, #1e96d1 0%, #0a5a8a 100%);
    border: 1px solid #0a7ab8;
    border-radius: 3px;
    color: #fff;
    padding: 10px 75px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(30, 150, 209, 0.3);
}

.login-btn:hover {
    background: linear-gradient(to bottom, #2ba8e8 0%, #0c6da3 100%);
    box-shadow: 0 0 15px rgba(30, 150, 209, 0.5);
}

.login-btn:active {
    transform: scale(0.98);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-btn.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.signup-btn {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 12px 65px;
    background: linear-gradient(to bottom, #1a8a4c 0%, #145c35 100%);
    border: 1px solid #0f4528;
    border-radius: 4px;
    color: #e8f5e9;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(20, 92, 53, 0.4);
    overflow: hidden;
}

.signup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.signup-btn:hover {
    background: linear-gradient(to bottom, #1f9d57 0%, #1a8a4c 100%);
    box-shadow: 0 0 20px rgba(20, 92, 53, 0.7), 0 0 40px rgba(20, 92, 53, 0.3);
    transform: translateY(-2px);
}

.signup-btn:active {
    transform: translateY(0) scale(0.98);
}

.signup-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.signup-btn.validating,
.login-btn.validating,
.proceed-btn.validating {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
}

.signup-btn.loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.forgot-link {
    margin-top: 3px;
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-links {
    margin: 1px 0;
}

.form-links p {
    color: #a0b4c8;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-links a {
    color: #0596d5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-links a:hover {
    color: #2ba8e8;
    text-decoration: underline;
}

.join {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(61, 90, 128, 0.4);
}

.join p {
    color: #a0b4c8;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 35px 0 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid #3d5a80;
    border-radius: 50%;
    color: #6b8aad;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* .social-icon:hover {
    transform: translateY(-3px);
} */

.social-icon[title="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.social-icon[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: #fff;
}

.social-icon[title="TikTok"]:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.form-footer {
    width: 100%;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid #3d5a80;
    text-align: center;
}

.form-section.form-footer {
    margin-top: auto;
}

.form-footer p {
    color: #8a9eb5;
    font-size: 11px;
    margin-bottom: 5px;
}

/* .form-footer .copyright {
    color: #c8aa6e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
} */

.terms-link {
    color: #8a9eb5;
    font-size: 11px;
    /* letter-spacing: 1px; */
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #c8aa6e;
}

@media (max-width: 1500px) {
    .content-wrapper {
        padding: 35px 30px;
    }
}

@media (max-width: 1200px) {
    .content-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 1024px) {
    .login-container {
        position: relative;
    }
    
    .slideshow {
        position: absolute;
        top: 0;
        height: 100%;
        width: 50%;
        flex: none;
        z-index: 1;
    }
    
    .slideshow-left {
        left: 0;
        order: unset;
    }
    
    .slideshow-right {
        right: 0;
        order: unset;
    }
    
    .slideshow .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(1, 10, 19, 0.45);
        z-index: 1;
    }
    
    .slideshow .slide-text {
        display: none;
    }
    
    .content-wrapper {
        position: relative;
        z-index: 10;
        order: 1;
        width: 100%;
        flex: 1 1 auto;
        padding: 15px 20px;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
        background: transparent;
    }
    
    .login-panel {
        max-width: 450px;
        min-height: auto;
        padding: 45px;
        background: rgba(30, 48, 77, 0.95);
        border-radius: 12px;
    }
    
    .logo {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .logo-img {
        height: 100px;
        width: auto;
    }
    
    .form-title {
        text-align: center;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .register-progress {
        justify-content: center;
    }
    
    .input-wrapper,
    .input-group input,
    .notification {
        max-width: 100%;
    }
    
    .input-group {
        margin-bottom: 10px;
    }
    
    .input-group input:not(.code-input) {
        height: 40px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .form-actions.step-actions {
        flex-direction: column-reverse;
    }
    
    .login-btn {
        width: 60%;
        padding: 10px 20px;
        margin: 0 auto;
    }
    
    .form-view {
        min-height: auto;
    }
    
    .join {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .social-links {
        margin: 12px 0 10px;
    }
    
    .form-footer {
        margin: 12px auto 0;
        padding-top: 10px;
    }
}


@media (max-width: 480px) {
    .content-wrapper {
        padding: 15px;
        justify-content: flex-start;
    }
    
    .logo-img {
        height: 60px;
        width: auto;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .notification-area {
        min-height: 15px;
    }
    
    .form-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .input-group label,
    .form-links p,
    .terms-link {
        font-size: 11px;
    }
    
    .input-group {
        margin-bottom: 10px;
    }
    
    .input-group input:not(.code-input) {
        height: 38px;
        font-size: 13px;
    }
    
    .login-btn,
    .signup-btn,
    .back-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .step-description {
        font-size: 12px;
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .input-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .join {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .join p {
        font-size: 12px;
    }
    
    .social-links {
        margin: 15px 0 10px;
    }
    
    .form-footer {
        margin: 15px auto 0;
        padding-top: 10px;
    }
    
    .form-footer p {
        font-size: 10px;
    }
}

@media (max-height: 768px) {
    .slide-text {
        max-width: 60%;
        max-height: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        display: none;
    }
    
    .content-wrapper {
        height: 100%;
        overflow-y: auto;
        justify-content: flex-start;
        padding: 10px 20px;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .logo-img {
        width: 220px;
        height: auto;
    }
    
    .login-panel {
        padding: 10px;
        min-height: auto;
    }
    
    .form-view {
        min-height: auto;
    }
    
    .form-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .input-group {
        margin-bottom: 8px;
    }
    
    .input-group label {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .input-wrapper {
        width: 70%;
        margin: 0 auto;
    }
    
    .input-wrapper .input-icon {
        width: 18px;
        height: 18px;
    }
    
    .input-group input:not(.code-input) {
        height: 36px;
        font-size: 13px;
    }

    .login-btn {
        padding: 10px 60px;
        font-size: 12px;
    }

    .signup-btn {
        padding: 10px 60px;
        font-size: 12px;
    }
    
    .join {
        margin-top: 0;
        padding-top: 10px;
    }
    
    .join p {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .social-links {
        margin: 10px 0 8px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .form-footer {
        margin: 10px auto 0;
        padding-top: 8px;
    }
    
    .form-footer p {
        font-size: 9px;
        margin-bottom: 3px;
    }
    
    .form-links {
        margin-top: 5px;
    }
    
    .form-links p {
        font-size: 11px;
    }
}

@media (max-height: 550px) {
    .content-wrapper {
        padding: 10px 15px;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .logo-img {
        width: 150px;
    }
    
    .login-panel {
        padding: 10px;
    }
    
    .form-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .input-group {
        margin-bottom: 8px;
    }
    
    .input-group label {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .input-group input:not(.code-input) {
        height: 36px;
        font-size: 13px;
    }
    
    .login-btn,
    .signup-btn,
    .back-btn {
        padding: 8px 15px;
        font-size: 11px;
    }
    
    .step-description {
        font-size: 11px;
        padding: 8px;
        margin-bottom: 10px;
    }
    
    .join {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .join p {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .social-links {
        margin: 10px 0 8px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .form-footer {
        margin: 10px auto 0;
        padding-top: 8px;
    }
    
    .form-footer p {
        font-size: 9px;
    }
}

@media (max-height: 450px) {
    .logo {
        display: none;
    }
    
    .form-footer {
        display: none;
    }
    
    .social-links {
        display: none;
    }
}
