﻿:root {
    --acap-color-blue: #174896;
    --acap-color-red: #eb2b27;

}

* {
    font-family: 'Lato';
}
 
/* Utilities */
.claim-form-label {
    display: block;
    font-size: large;
    font-weight: bold;
    margin-bottom: 1rem;
}

.claim-form-input {
    border-radius: 14px;
    padding: 12px 10px;
    transition: 0.3s ease all;
    width: 100%;
    resize: none;
}

select.claim-form-input {
    padding: 0;
    height: 3.2rem;
}

.section-title {
    color: #174896;
    font-size: 35px;
    font-weight: bold;
}

.form-error-message {
    font-size: medium;
    font-weight: 700;
    color: var(--acap-color-red);
    margin-top: 1rem;
}

/* Form container */
.claim-form-container {
    max-width: 750px;
    margin: 120px auto 30px auto;
}

/* Form Title */
#claim-form-title {
    /*color: var(--acap-color-blue);*/
    text-align: center;
    font-size: 32px;
    margin-bottom: 2.8rem;
}

    #claim-form-title span {
        color: var(--acap-color-red);
    }

/* First Container - General information */
.general-information-container {
    margin-bottom: 0;
}

#gi-section-title-container {
    align-items: center;
    border-bottom: 2px solid var(--acap-color-red);
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.gi-section-title-box-date .section-title {
    margin-right: 10px;
}

#gi-section-title-container .gi-section-title-box-date {
    display: flex;
}

    #gi-section-title-container .gi-section-title-box-date .text-date {
        border: 2px solid var(--acap-color-blue);
        border-radius: 8px;
        padding: 5px 8px;
        font-weight: bold;
    }

#gi-fields-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gi-input-group {
    margin-bottom: 1.5rem;
}

/* Second Container - Claim information */
.claim-information-container {
    margin-bottom: 0;
}

#ci-section-title-container {
    border-bottom: 2px solid var(--acap-color-red);
    margin-bottom: 30px;
}

#ci-fields-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 1.5rem;
}

    #ci-fields-container div:nth-child(3) p {
        font-size: large;
        font-weight: 600;
    }

    #ci-fields-container div:nth-child(5) {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #ci-fields-container div:nth-child(6) {
        grid-column-start: 1;
        grid-column-end: 3;
    }

/* Terms and conditions */

.terms-and-conditions-box {
    margin-top: 2rem;
    /* height: 20rem; */
    /* width: 100%; */
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
}

    .terms-and-conditions-box p {
        font-size: x-small;
        font-weight: bold;
        /* overflow: hidden; */
        text-transform: uppercase;
        /* text-overflow: ellipsis; */
        text-align: justify;
        margin-bottom: 0;
    }

    .terms-and-conditions-box div label {
        font-size: large;
        font-weight: bold;
    }


#terms-conditions-error {
    color: var(--acap-color-red);
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}


.btn-submit-button {
    background-color: var(--acap-color-blue);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align:center;
    padding: 12px 0;
    width: 30%;
    border: 2px solid transparent;
    transition: 0.3s ease all;
    margin: 2rem 0;
}

    .btn-submit-button:hover {
        background-color: white;
        color: #174896;
        cursor: pointer;
        border-color: var(--acap-color-blue);
    }

.btn-Cont {
    margin-left: 20px;
    background: #174896;
    margin-top: 30px;
    padding: 11px 61px 11px 61px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 15.73px;
}

.btn-Ren {
    background: #EB2B27;
    margin-top: 30px;
    padding: 11px 61px 11px 61px;
    border-radius: 8px;
    font-family: Inter;
    font-size: 13px;
    font-weight: 700;
    line-height: 15.73px;
}
