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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: url('/images/landing.jpg') center center / cover no-repeat fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Dark overlay for better text readability */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 43, 64, 0.7);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.left-section {
    display: flex;
    justify-content: center;
    align-items: center;
}


.right-section {
    color: white;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.company-name {
    font-size: 25px;
    font-weight: 700;
    color: white;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-left: 10px;
}

.tagline {
    color: #FFF;
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 187.5% */
    letter-spacing: -0.2px;
    margin-bottom: 1rem;
    max-width: 500px;
}

.form-container form {
    position: relative;
    z-index: 2;
    width: 100%;
}

.form-container {
    display: flex;
    width: 493px;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--8, 8px);
    border-radius: 8px var(--8, 8px) 8px 8px;
    background: linear-gradient(
        135deg,
        rgba(69, 236, 243, 0.4),
        rgba(10, 28, 60, 0.8)
    );
    box-shadow: 0 0 20px 0 rgba(247, 247, 247, 0.10), 0 0 80px 0 rgba(56, 220, 225, 0.30), 0 0 250px 0 rgba(35, 237, 241, 0.15);
    position: relative;
    overflow: hidden;
}
.nano-container {
    width: 493px;
    padding: 40px;
    gap: var(--8, 8px);
    border-radius: 8px var(--8, 8px) 8px 8px;
    border: 1px solid rgba(10, 28, 61, 0.60);
    background: linear-gradient(331deg, rgba(10, 28, 60, 0.40) 0.68%, rgba(69, 236, 243, 0.20) 97.78%);
    box-shadow: 0 0 20px 0 rgba(247, 247, 247, 0.10), 0 0 80px 0 rgba(56, 220, 225, 0.30), 0 0 250px 0 rgba(35, 237, 241, 0.15);
}
.nano-content{
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: center;
}

.line{
    width: 412px;
    height: 0;
    stroke-width: 1px;
    stroke: rgba(255, 255, 255, 0.15);
    margin-left: 6px;
    margin-bottom: 16px;

}
.text-input{
    margin-top: 10px !important;
    padding-top: 10px !important;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 28, 60, 0.7);
    z-index: 1;
}
.inner-text{
    color: #FFF;
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 125% */
    letter-spacing: -0.2px;
rgba(255, 255, 255, 1)
}
/*.nano-container::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: rgba(10, 28, 60, 0.7);*/
/*    z-index: 1;*/
/*}*/

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    color: #B0BEC5;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.error_handling {
    margin-top: 5px;
    color: rgba(255, 99, 90, 1);
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
}
.red_border{
    border-color: rgba(255, 99, 90, 1) !important;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(52, 73, 94, 0.8);
    border: 1px solid rgba(77, 208, 225, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #4DD0E1;
    box-shadow: 0 0 0 2px rgba(77, 208, 225, 0.2);
}

.form-input::placeholder {
    color: #95A5A6;
}

.check-box-group-with-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(52, 73, 94, 0.8);
    border: 1px solid rgba(77, 208, 225, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2395A5A6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-input {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(77, 208, 225, 0.5);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-input.checked {
    border-color: #4DD0E1;
    background: #4DD0E1;
}

.radio-input.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.radio-label {
    color: #B0BEC5;
    font-size: 0.9rem;
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(52, 73, 94, 0.8);
    border: 1px solid rgba(77, 208, 225, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    min-height: 100px;
    resize: vertical;
    font-family: 'IBM Plex Sans', sans-serif;
}

.form-textarea:focus {
    outline: none;
    border-color: #4DD0E1;
    box-shadow: 0 0 0 2px rgba(77, 208, 225, 0.2);
}

.form-textarea::placeholder {
    color: #95A5A6;
}

.submit-btn {
    width: 100%;
    display: flex;
    height: 52px;
    padding: var(--16, 16px) var(--32, 32px) var(--16, 16px) 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 4px var(--4, 4px) 4px 4px;
    border: 1px solid #D89044;
    background: linear-gradient(89deg, #F3652C -0.01%, #D89044 101.18%);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15) inset, 0 0 50px 0 rgba(240, 160, 128, 0.40);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-family: 'IBM Plex Sans', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

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

/* Alert Styles */
.alert {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    position: relative;
    transition: opacity 0.5s ease-out;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        gap: 3rem;
    }

    .form-container {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 767px) {
    body {
        height: 600px;
        background: url('/images/mobile-landing.jpg') center center / cover no-repeat fixed;
        overflow-y: auto;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        height: auto;
        min-height: auto;
    }

    .left-section {
        order: 2;
    }

.logo-section{
    display: flex;
    justify-content: center;
}

    .tagline {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        /*margin-left: 50px!important;*/
    }

    .tagline br {
        display: none;
    }

    .form-container {
        width: 100%;
        max-width: 100%;
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .check-box-group-with-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .radio-group {
        width: 100%;
        justify-content: start;
        margin-bottom: 10px;
    }

    .submit-btn {
        height: 48px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .main-content {
        gap: 1.5rem;
    }

    .logo-section {
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .company-name {
        margin-left: 0;
        font-size: 20px;
    }

    .tagline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .form-container {
        padding: 25px 20px;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-input, .form-select, .form-textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .radio-group {
        gap: 0.5rem;
    }

    .submit-btn {
        height: 44px;
        font-size: 0.9rem;
    }
}
