@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --fontFamily1: "Merriweather";
    --fontFamily2: "Source Sans 3";
}

*{
    font-family: var(--fontFamily2);
}

body{
    background-color: #F9F7F3;
}

.container{
    max-width: 1360px;
    margin: auto;
}




/*************************/
/** Access Code */
/*************************/

.main{
    display: none;
}

.access h1{
    font-family: var(--fontFamily1);
    font-weight: 300;
    color: #fff;
}

.access-section{
    width: 100%;
    background-color: #F9F7F4;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-div{
    background-color: #fff;
    width: 450px;
    padding: 40px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.access-section h2{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}

.access-div form{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.access-div form .alert{
    color: red;
    text-align: left;
    display: none;
}

.access-div form input[type="password"]{
    height: 45px;
    color: #332e25;
    border: none;
    outline: none;
    border-bottom: 1px solid #787070;
    padding-left: 16px;
    font-size: 17px;
}

.access-div form input[type="submit"]{
    height: 45px;
    background-color: #003256;
    color: #fff;
    font-size: 16px;
    border: none;
    padding: 9px 16px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    cursor: pointer;
}

.access-div form input[type="submit"]:hover{
    background-color: #013F83;
}

.access-div p{
    font-size: 14px;
}













/*************************/
/** HEADER */
/*************************/


.upper-header{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 32px;
}

.upper-header p{
    font-family: var(--fontFamily2);
    font-size: 12px;
    font-style: italic;
    color: #1b1b1b;
}

.upper-header img:last-child{
    width: 8px;
}

.middle-header{
    border-top: 2px solid #7F7141;
    background-color: #B7AC83;
    height: 9px;
}

.lower-header{
    background-color: #003256;
    padding: 24px 0 20px;
}

.lower-header-container{
    text-align: center;
}

.lower-header-container img{
    width: 105px;
}











/*************************/
/** Bank Report */
/*************************/

.bank-report .container{
    padding: 70px 32px;
    text-align: center;
    background-color: #fff;
}

.bank-report h2{
    font-family: var(--fontFamily1);
    font-size: 46px;
    font-weight: 300;
    color: #003256;
    margin-bottom: 18px;
}

.bank-report p{
    font-family: var(--fontFamily2);
    font-size: 18px;
    color: #1b1b1b;
    padding: 0 72px;
}











/*************************/
/** Account Overview */
/*************************/

.account-overview .container{
    padding: 0px 32px;
    text-align: center;
    background-color: #fff;
}

.account-overview h2{
    font-family: var(--fontFamily1);
    font-size: 46px;
    font-weight: 300;
    color: #003256;
    margin-bottom: 24px;
}

.account-overview p{
    font-family: var(--fontFamily2);
    font-size: 18px;
    color: #1b1b1b;
    padding: 0 72px;
    margin-top: 8px;
}


#case-id, #account-number{
    color: #0066cc;
}












/*************************/
/** Summary */
/*************************/


.summary .container{
    padding: 70px 32px;
    text-align: center;
    background-color: #fff;
}

.summary h2{
    font-family: var(--fontFamily1);
    font-size: 46px;
    font-weight: 300;
    color: #003256;
    margin-bottom: 18px;
}

.summary p{
    font-family: var(--fontFamily2);
    font-size: 18px;
    color: #1b1b1b;
    padding: 0 72px;
    margin-bottom: 24px;
}

table{
    margin: 0 auto 48px;
    border-collapse: collapse;
}

th, td{
    border: 1px solid #000;
}

thead{
    background-color: #003256;
}

thead th{
    font-family: var(--fontFamily1);
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    padding: 16px 60px;
}

tbody td{
    font-size: 17px;
    color: #1b1b1b;
    padding: 16px 60px;
}







/*************************/
/** Security */
/*************************/

.security .container{
    padding: 0px 100px 70px;
    background-color: #fff;
}

.security h2{
    font-family: var(--fontFamily1);
    font-size: 46px;
    font-weight: 300;
    color: #003256;
    margin-bottom: 32px;
    text-align: center;
}

.security h3{
    font-family: var(--fontFamily1);
    font-size: 32px;
    font-weight: 300;
    color: #003256;
    margin-bottom: 24px;
    text-align: center;
}

.security p{
    font-family: var(--fontFamily2);
    font-size: 18px;
    color: #1b1b1b;
}

.security ul{
    list-style-position: inside;
    margin: 8px 0 16px;
}

.security li{
    font-family: var(--fontFamily2);
    font-size: 18px;
    color: #1b1b1b;
}





/*************************/
/** FOOTER */
/*************************/

.upper-footer{
    background-image: url("../img/bg.png");
    padding: 48px;
}

.upper-footer-container{
    width: 440px;
    margin: auto;
    padding: 24px 16px;
    border-left: 0.5px solid rgb(255,255,255,0.5);
    border-right: 0.5px solid rgb(255,255,255,0.5);
}

.upper-footer-container h2{
    font-family: var(--fontFamily1);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 27px;
    text-align: center;
}

.footer-form{
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.footer-form input[type="text"]{
    width: 350px;
    padding: 8px 8px 8px 20px;
    font-size: 16px;
    font-family: var(--fontFamily1);
}

.footer-form input[type="button"]{
    background-color: #7F7141;
    border: none;
    color: #fff;
    text-transform: uppercase;
    width: 130px;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.footer-form input[type="button"]:hover{
    background-color: #A48923;
}

.social-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-icons a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #7F7141;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.social-icons a:hover{
    background-color: #A48923;
}

.social-icons img{
    width: 16px;
}



.lower-footer{
    background-color: #1B1D20;
    border-top: 2px solid #fff;
    padding: 16px 8px;
}

.lower-footer-container{
    padding: 0 200px;
}

.lower-footer-container div{
    display: flex;
    row-gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.lower-footer-container a{
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 0 24px;
}