﻿.event-form-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.tempur-sealy-header {
    position: relative;
    margin-bottom: 2rem;
}

.header-image {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    /* border-radius: 8px; */
}

.breadcrumb {
    margin-bottom: 1rem;
}

.home-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
}

    .home-link:hover {
        text-decoration: underline;
    }

.section-title {
    color: #2E6294;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 2rem;
    text-align: left;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.form-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: #DFE8EF;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
}

    .form-type-card:hover {
        background: #e9ecef;
        text-decoration: none;
        color: #495057;
        transform: translateY(-2px);
    }

.icon-container2 {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.icon-container i {
    font-size: 1.5rem;
    color: #4A90E2;
}

.form-type-card span {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.form-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


body {
    margin: 0;
}

.event-form-logo {
    margin-top: 40px;
}

.event-form-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-row-gap: 40px;
}

.tempur-sealy-header img {
    width: 1400px !important;
    max-width: 100%;
    overflow: visible !important;
}

.form-type-card {
    align-items: flex-start;
}

.icon-container img {
    width: 70px;
}




body {
    margin: 0;
}

.event-form-logo {
    margin-top: 40px;
}

.event-form-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-row-gap: 40px;
}

.tempur-sealy-header img {
    width: 1400px !important;
    max-width: 100%;
    overflow: visible !important;
}

.form-type-card {
    align-items: flex-start;
}

.icon-container img {
    width: 70px;
}




.form-row2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group2 {
    margin-bottom: 0;
}

.form-control {
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.9rem;
    /*     background-color: #f8f9fa; */
}

    .form-control:focus {
        border-color: #2E6294;
        box-shadow: 0 0 0 0.2rem rgba(46, 98, 148, 0.25);
        background-color: white;
    }

.checkbox-question {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.question-label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.75rem;
}

.checkbox-options {
    display: flex;
    gap: 2rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

    .checkbox-option input[type="radio"] {
        opacity: 0;
        position: absolute;
    }

.checkmark {
    height: 20px;
    width: 20px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
}

.checkbox-option input[type="radio"]:checked + .checkmark {
    background-color: #2E6294;
    border-color: #2E6294;
}

    .checkbox-option input[type="radio"]:checked + .checkmark:after {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: white;
    }

.btn-wide {
    padding: 0.75rem 3rem;
    font-size: 1rem;
    background-color: #2E6294 !important;
    border-color: #2E6294 !important;
    border-radius: 4px;
}

    .btn-wide:active,
    .btn-wide:focus,
    .btn-wide:hover {
        background-color: #1a4a73 !important;
        border-color: #1a4a73 !important;
    }

.text-danger {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

hr {
    border: none;
    height: 2px;
    background-color: #ddd;
}

select {
    height: 36px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}




/* simple Bootstrap-4 compatible floating label */
.form-floating {
    position: relative;
}

    .form-floating > .form-control {
        padding: 1.25rem .75rem .25rem; /* space for the label */
    }

    .form-floating > label {
        position: absolute;
        top: .25rem;
        left: .75rem;
        pointer-events: none;
        transition: all .1s ease-in-out;
        opacity: .65;
    }

    .form-floating > .form-control:focus + label,
    .form-floating > .form-control:not(:placeholder-shown) + label {
        font-size: .75rem;
        transform: translateY(-.65rem);
        opacity: .85;
    }

/* wrapper */
.form-floating {
    position: relative;
}

    /* give the label room and position it */
    .form-floating > .form-control {
        padding: 1.25rem .75rem .25rem; /* space for the label */
    }

    .form-floating > label {
        position: absolute;
        top: .25rem;
        left: .75rem;
        pointer-events: none;
        transition: all .12s ease-in-out;
        opacity: .65;
    }

    /* ① float while the field has focus … */
    .form-floating > .form-control:focus + label,
    /* ② … or while the field has content (value != "")               */
    .form-floating > .form-control:not(:focus):valid + label {
        font-size: .75rem;
        transform: translateY(-.65rem);
        opacity: .85;
    }

.checkbox-question {
    display: flex;
    column-gap: 20px;
    background-color: #fff;
    margin-bottom: 0px;
    margin-top: 0px;
}

.checkbox-options {
    gap: 10px;
}











/* Terms and Conditions Styling */
.terms-conditions-section {
    /*         border: 2px solid #ddd; */
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.policy-document {
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.policy-header {
    background: #e9ecef;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

    .policy-header h4 {
        margin: 0 0 0.5rem 0;
        color: #333;
        font-size: 1rem;
        font-weight: bold;
    }

.policy-dates {
    font-size: 0.8rem;
    color: #666;
}

.policy-content {
    padding: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #333;
}

    .policy-content p {
        margin-bottom: 1rem;
    }

.agreement-section {
    padding: 1.5rem;
}

.agreement-text {
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.btn-submit {
    background-color: #4A90E2;
    border-color: #4A90E2;
    color: white;
    padding: 0.75rem 4rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-submit:hover {
        background-color: #357ABD;
        border-color: #357ABD;
    }

.text-danger {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

hr {
    border: none;
    height: 2px;
    background-color: #ddd;
}



.footer-copyright {
    margin-top: 20px;
}


.file-input {
    display: none;
}

.upload-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-right: 1rem;
    text-align: center;
    width: 196px;
    border-radius: 4px;
}

.upload-info {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.9rem;
    color: #333;
}



.modal-content .success-icon {
    margin: -40px 0px;
}

.modal-content h3 {
    font-weight: 600;
    color: #000;
}

.modal-content p {
    font-size: 20px;
    font-weight: 600;
}

.modal-body {
    padding-bottom: 20px;
}

    .modal-body .btn {
/*        border-radius: 0px !important;*/
        min-width: 160px !important;
    }


#termsAgreementCheckbox {
    display: none;
}

.agreement-section .checkmark {
    width: 30px;
    height: 30px;
}

.agreement-section input:checked ~ .checkmark {
    background-color: #2E6294 !important;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px !important;
        margin: 1.75rem auto;
    }
}

