*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'RobotoRegular' , sans-serif;    
}

@font-face {
    font-family: 'RobotoBold';
    src:url('./fonts/Roboto-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoBlack';
    src:url('./fonts/Roboto-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoRegular';
    src:url('./fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoMedium';
    src:url('./fonts/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoLight';
    src:url('./fonts/Roboto-Light.ttf') format('truetype');
}

  
/* Header */

.header{
    height: 55px;
    width: 100%;
    padding: 0 0 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header>img{
    height: 55px;
}

/* Region Form */

.form-section{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;

}

.region-section{
    width: 75%;
    height: auto;
    padding: 60px 40px;
    background-color: #f7f8fa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.region-section>div{
    width: 100%;
    text-align: center;
}

.region-section-1{
    margin-bottom: 30px;
    font-family: 'RobotoBold' , sans-serif;
    font-size: 1.5rem;
    line-height: 1.4 ;
}


.region-section-2{
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'RobotoLight' , sans-serif;
}

.region-section-3{
    margin-bottom: 20px;
}

.region-section-3>input{
    display: block;
    width: 100%;
    height: 48px;
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 1px solid #c1c9d6;
    border-radius: 12px;
}

.region-section-4{
    font-size: 14px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: 'RobotoLight' , sans-serif;
}

.region-section-5{
    margin-bottom: 20px;
}

.region-section-5>select{
    display: block;
    width: 100%;
    height: 48px;
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #000;
    background-color: #ffffff;
    background-image: none;
    border: 0;
    border-radius: 12px;
}

.region-section-6{
    background-color: #007461;
    color: #fff;
    border-width: 1px;
    border-color: #007461;
    margin: 20px 0 0;
    padding-left: 30px !important;
    padding-right: 30px !important;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 2px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border-style: solid;
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 20px;
}

.hoverOpacity:hover{
    opacity: 0.8;
}

.hoverOpacity{
    opacity: 1;
}

.region-section-7{
    color: #007561;
    text-decoration: underline;
    font-size: 14px;
}


/*  Cover Section */


.myCover{
    padding-bottom: 50px;
    height: 100vh;
    width: 50%;
    background-image: url('./images/cover.jpeg');
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.coverMessage{
    background-color: white;
    height: 220px;
    width: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.coverMessageTitle{
    font-family: 'RobotoBold' , sans-serif;
    font-size: 1.1rem;
    line-height: 1.3 ;
}

.coverMessageDesc{
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.3 ;
    font-family: 'RobotoRegular' , sans-serif;
}

.coverMessageButton{
    background-color: #007461;
    color: #fff;
    border-width: 1px;
    border-color: #007461;
    padding-left: 30px !important;
    padding-right: 30px !important;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border-style: solid;
    padding: 11px 12px;
    font-size: 12px;
    line-height: 1.42857;
    border-radius: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* align main content */

.mainContent{
    display: flex;
}

/* media query */


@media only screen and (max-width:900px){
    .mainContent{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .myCover{
        width: 100%;
        height: 50vh;
    }
    .form-section{
        width: 80%;
        padding: 30px 30px;
    }
}

@media only screen and (max-width:650px){

    .form-section{
        padding: 30px 30px;
        width: 100%;
        background-color: white;
    }

    .myCover{
        display: none;
    }

    .region-section{
        width: 100%;
    }

   
}