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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: -webkit-linear-gradient(left, #3931af, #00c6ff);
    min-height: 100vh;
}

.main-container {
    width: 100vw;
    height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-fluid {

    border-radius: 25px;
    height: calc(100vh - 40px);
}

.container-fluid .row {
    height: 100%;
}

/* Left Column - 5 columns */
.left-column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    height: 100%;
    overflow: hidden;
}

.logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-wrapper {
    text-align: center;
    z-index: 2;
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
    margin-top: 45px;
}

.main-image {
    width: 85%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 15px;
}

.image-overlay {
    position: absolute;
    bottom: 20%;
    right: 10%;
    background: linear-gradient(135deg, #0088c5 0%, #014b6c 100%);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 50px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 5;
}

.left-column h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.left-column p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
    color: white;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-icons a {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: white;
    color: #001c54;
    transform: translateY(-3px);
}

/* Right Column - 7 columns */
.right-column {
    padding: 20px 15px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

.right-column::-webkit-scrollbar {
    width: 10px;
}

.right-column::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0;
}

.right-column::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #0088c5 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.right-column::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5568d3 0%, #0077b3 100%);
    background-clip: padding-box;
}

/* Form Container - Centered with Shadow */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(102, 126, 234, 0.1);
    position: relative;
}


.form-header {
    margin-bottom: 30px;
    padding-top: 5px;
}
i.fa.fa-download {
    color: #0063cb;
    font-size: 24px;
}
.form-header h2 {
    color: #001c54;
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 15px;
}

/* Bootstrap Row Spacing */
.row.g-3 {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 14px;
}

.required {
    color: #e74c3c;
    margin-left: 2px;
}

/* Bootstrap Form Controls */
.form-control,
.form-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e4e8;

    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #667eea !important;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
}

/* Captcha Styles */
.captcha-container {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.captcha-box {
    display: flex;
    gap: 12px;
    align-items: center;
}

.captcha-display {
    background: linear-gradient(135deg, #ffcb1e 0%, #ffa500 100%);
    color: #1a1a2e;
    padding: 5px 20px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    user-select: none;
    text-align: center;
    
    /* box-shadow: 0 4px 12px rgba(255, 203, 30, 0.3); */
}

.captcha-reload {
    width: 48px;
    height: 48px;
    background: #fafbfc;
    border: 2px solid #e0e4e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #667eea;
    font-size: 20px;
}

.captcha-reload:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: rotate(180deg);
}

.captcha-input-wrapper {
    flex: 1;
    min-width: 200px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #001c54 0%, #0077b3 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #001c54 -60%, #0077b3 100%);
    transform: translateY(-2px);
    /* box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); */
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-container {
        padding: 15px;
    }

    .container-fluid {
        height: calc(100vh - 30px);
    }

    .container-fluid .row {
        height: auto;
        min-height: 100%;
    }

    .left-column,
    .right-column {
        height: auto;
    }

    .left-column {
        padding: 40px 30px 30px;
    }

    .logo {
        top: 20px;
        font-size: 28px;
    }

    .image-container {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    /* .main-image {
        max-width: 220px;
    } */

    .image-overlay {
        bottom: 30%;
        right: 20%;
        font-size: 16px;
        padding: 11px 22px;
        white-space: normal;
        max-width: 160px;
        text-align: center;
        line-height: 1.3;
    }

    .left-column h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .left-column p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .social-icons {
        gap: 12px;
        margin-top: 0px;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .right-column {
        padding: 30px 20px;
    }

    .form-container {
        padding: 35px 30px;
        border-radius: 16px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .captcha-container {
        flex-direction: column;
        gap: 12px;
    }

    .captcha-box {
        width: 100%;
        justify-content: center;
    }

    .captcha-input-wrapper {
        width: 100%;
    }
}

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

    .container-fluid {
        height: calc(100vh - 20px);
    }

    .left-column {
        padding: 25px;
    }

    .logo {
        font-size: 24px;
    }

    /* .main-image {
        max-width: 180px;
    } */

    .image-overlay {
        font-size: 14px;
        padding: 9px 18px;
        max-width: 100%;
    }

    .left-column h1 {
        font-size: 28px;
    }

    .left-column p {
        font-size: 15px;
    }

    .right-column {
        padding: 15px;
    }

    .form-container {
        padding: 20px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-control,
    .form-select {
        padding: 12px 14px;
        font-size: 13px;
    }
}


.message,
.help-block {
    color: red;
    float: right;
    padding: 2px 0px 5px 0px;
}





/* Captcha validation status */
.valid {
    color: #27ae60;
    font-weight: 600;
    font-size: 13px;
}

.invalid {
    color: #e74c3c;
    font-weight: 600;
    font-size: 13px;
}