/* Form Container Styling */
.beta-access-form {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.beta-access-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/media/grid-pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

/* Form Card Styling */
.beta-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(150, 188, 51, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.form-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.tech-border {
    height: 2px;
    width: 100px;
    background: var(--nts-green);
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.tech-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: borderShine 3s infinite;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(150, 188, 51, 0.05);
}

.form-section h3 {
    color: var(--nts-green);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Form Controls */
.form-floating > .form-control,
.form-floating > .form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(150, 188, 51, 0.1);
    color: #fff;
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--nts-green);
    box-shadow: 0 0 0 0.25rem rgba(150, 188, 51, 0.15);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--nts-green);
    transform: scale(.85) translateY(-0.75rem) translateX(0.15rem);
}

/* Switch Styling */
.form-check-input {
    background-color: rgba(150, 188, 51, 0.1);
    border-color: rgba(150, 188, 51, 0.2);
}

.form-check-input:checked {
    background-color: var(--nts-green);
    border-color: var(--nts-green);
}

.form-check-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Submit Button Area */
.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Thank You Message */
.form-thank-you {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(150, 188, 51, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.form-thank-you .icon-wrapper {
    font-size: 4rem;
    color: var(--nts-green);
    margin-bottom: 1.5rem;
}

.form-thank-you h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.form-thank-you p {
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes borderShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Validation Messages */
.invalid-feedback {
    color: #ff4d4d;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .beta-form {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1rem;
    }
} 

/* Beta Badge Styling */
.beta-badge {
    background: rgba(150, 188, 51, 0.03);
    border: 1px solid rgba(150, 188, 51, 0.1);
    border-radius: 8px;
    padding: 6px;
    margin: 15px auto;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
}

.badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-detail {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.55em;
    opacity: 0.7;
    letter-spacing: 0.5px;
} 

/* Beta Highlight Text */
.beta-highlight {
    background: rgba(150, 188, 51, 0.03);
    border-left: 3px solid var(--nts-green);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.beta-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.beta-highlight p:last-child {
    margin-bottom: 0;
} 

/* Communication Preferences */
.preference-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.custom-checkbox {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(150, 188, 51, 0.1);
    border-radius: 8px;
    padding: 1.25rem 1.25rem 1.25rem 4.5rem;
    margin: 0;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.custom-checkbox:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(150, 188, 51, 0.2);
}

.custom-checkbox .form-check-input {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid rgba(150, 188, 51, 0.3);
    cursor: pointer;
}

.custom-checkbox .form-check-label {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    text-align: left;
    display: block;
    width: 100%;
    margin: 0;
}

.discord-option {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    pointer-events: none;
    margin-top: -0.25rem;
}

.discord-option small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.4;
} 

/* Textarea Styling */
.textarea-tall {
    min-height: 120px !important;
    height: auto;
}

.form-floating > textarea.form-control {
    padding-top: 1.625rem;
}

.form-floating > textarea.form-control ~ label {
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
    opacity: 0.65;
} 

/* Role Selector Styling */
.role-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.role-option {
    flex: 1;
    max-width: 200px;
}

.role-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(150, 188, 51, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.role-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.btn-check:checked + .role-btn {
    background: rgba(150, 188, 51, 0.1);
    border-color: var(--nts-green);
    color: var(--nts-green);
}

.role-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(150, 188, 51, 0.2);
    color: rgba(255, 255, 255, 0.9);
} 

/* Role Info */
.role-info {
    text-align: center;
    margin-bottom: 1rem;
}

.role-info label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.role-info small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
} 

/* Required Fields */
.required-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > label::after {
    color: var(--nts-green);
} 

/* Disabled Button State */
.btn-main:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Invalid Field Styling */
.form-control.is-invalid {
    border-color: #ff4d4d !important;
    background-image: none !important;
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 77, 77, 0.25) !important;
} 

.form-check.is-invalid .form-check-label {
    color: #dc3545;
}

.form-check.is-invalid .form-check-input {
    border-color: #dc3545;
}

.form-check .invalid-feedback {
    display: block;
    margin-top: 0.25rem;
}

.beta-free-banner {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.free-badge {
    background: rgba(150, 188, 51, 0.1);
    border: 1px solid var(--nts-green);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: var(--nts-green);
    font-weight: 600;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.free-badge svg {
    font-size: 1rem;
} 

.beta-clarification {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

    .beta-clarification p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: unset;
    } 

/* Banner Section */
.banner {
    padding: 5rem 0 3rem;
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/media/grid-pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(150, 188, 51, 0.1) 0%, transparent 50%);
    animation: rotateGradient 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.banner .container {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
}

.banner h1::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--nts-green);
    border-radius: 2px;
}

.banner-description {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2.5rem !important;
    line-height: 1.6 !important;
    position: relative !important;
} 

.beta-access-note {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(150, 188, 51, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
}

.beta-access-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.beta-profiles p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.profile-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.profile-types span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(150, 188, 51, 0.15);
}

.profile-types i {
    color: var(--nts-green);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .profile-types {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-types span {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 

.beta-highlight .pricing-link {
    color: var(--nts-green);
    text-decoration: none;
    border-bottom: 1px dashed rgba(150, 188, 51, 0.5);
    transition: all 0.2s ease;
}

.beta-highlight .pricing-link:hover {
    border-bottom-style: solid;
    border-bottom-color: var(--nts-green);
}




/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {

    .free-badge {
        font-size: 0.9rem;
    }

}


/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {

    .beta-free-banner {
        gap: 2rem;
    }

    .free-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1.1rem;
    }

        .free-badge svg {
            font-size: 1.2rem;  
        }

    .badge-detail {
        font-size: 0.65em;
    }
}


/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    .banner h1 {
        font-size: 3.5rem;
    }

}


/*High Definition Plus (HD+) ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {
}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1620px;
    }
}

