@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
  --font: "Inter", sans-serif;
  --color: #ffffff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: var(--font);
    line-height: 1.3;
}





/****************************/
/** UTILITIES */
/****************************/

.section-container{
    width: 1050px;
    margin: auto;
}

.container{
    width: 1000px;
    margin: auto;
}

.bold-600{
    font-weight: 600;
}

.space-line{
    display: flex;
    line-height: 1 !important;
}

.border-bottom{
    border-bottom: 2px solid #000;
    width: 200px;
}

@media print {

    @page {
        size: Letter;
    }

    body::before {
        content: url("../img/watermark.png");
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
}

/****************************/
/** ACCESS CODE */
/****************************/

.access-section{
    width: 100vw;
    height: 100vh;
    background-image: url("../img/BG.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.access-section2{
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.access-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.access-div{
    background-color: #fff;
    border: 10px solid #074B69;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access-div h1{
    font-size: 39px;
    font-weight: 500;
    color: #5c4809;
    text-align: center;
    margin-bottom: 30px;
}

.access-div p{
    font-size: 13px;
    text-align: center;
}

.access-div p span{
    font-family: Arial, Helvetica, sans-serif;
    color: #ff0000;
    font-weight: 900;
}

.access-div form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}

.access-div form input{
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding-left: 10px;
    outline: 0;
}

.access-div form button{
    background-color: #76a7a2;
    color: #fff;
    font-size: 19px;
    border: 1px solid #669d97;
    padding: 10px 16px;
    cursor: pointer;
}

.access-div form div i{
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}

.access-div form .alert{
    color: #ff0000;
}






/****************************/
/** Main FORM */
/****************************/

.main-form{
    padding: 50px 0;
}

.main-form h1{
    font-weight: 400;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}

.main-form form{
    display: flex;
    flex-direction: column;
}

.main-form form h2{
    font-size: 22px;
    margin-bottom: 20px;
}

.main-form form h2:last-of-type{
    margin-top: 30px;
}

.main-form form>div{
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}

.form-input{
    display: flex;
    flex-direction: column;
    width: 45%;
}


.form-input input{
    margin-top: 10px;

    height: 40px;
    outline: none;
    border: 1px solid #000;

    padding: 10px;

    font-size: 16px;
    font-family: var(--font);
}

.form-input textarea{
    margin-top: 10px;
    height: 150px;
    outline: none;
    border: 1px solid #000;

    padding: 10px;

    font-size: 16px;
    font-family: var(--font);
}

form #submit{
    margin-top: 50px;
    background-color: #76a7a2;
    color: #fff;
    font-size: 20px;
    border: 1px solid #669d97;
    padding: 10px 150px;
    cursor: pointer;
    text-align: center;
}















/****************************/
/** HEADER */
/****************************/

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

header .left-header img{
    width: 500px;
}

header .right-header{
    font-size: 20px;
}







/****************************/
/** FOOTER */
/****************************/


.entry-footer{
    background-color: #D6D6D0;
    padding: 30px 0;
    text-align: center;
}

.notice-footer{
    margin-top: 50px;
    text-align: center;
}

.notice-footer p{
    font-style: italic;
}





/****************************/
/** MAIN SECTION */
/****************************/



.main-section{
    padding: 30px;
}


.main .heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.main .heading h2{
    font-family: Cambria;
    font-size: 22px;
    font-weight: 400;
}

.main .heading img{
    width: 50px;
}

.details{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.details h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 7px;
}

.details p{
    font-size: 19px;
}

.date-div{
    font-size: 20px;
    text-align: center;
    margin-bottom: 100px;
}


.notice-content p{
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.notice-content ul{
    list-style-position: inside;
    margin-bottom: 20px;
}

.notice-content ol{
    list-style-position: inside;
    margin-bottom: 20px;
}

.notice-content li{
    font-size: 20px;
    line-height: 1.7;
}