@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kantumruy Pro", sans-serif;
}

body{
    width: 100%;
    height: auto;
    background-color: #f1f1f1;
    
}

section{
    width: 100%;
    height: 100vh;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3%;
}

form{
    width: 500px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 5px 1px rgba(128, 128, 128, 0.621);
}

header{
    padding: 2% 3%;
    text-align: center;
    border-bottom: 2px solid #2554b3;
}
img{
    width: 200px;
}
.function{
    padding: 2% 3%;
}
.pdf-card{
    margin-top: 20px;
}



h1{
    text-align: start;
    margin-bottom: 20px;
    font-size: 26px;
    color: #1e1e1eeb;
}
h3{
    color: #1e1e1eeb;
    margin-bottom: 10px;
}

a{
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 450;
}
i{
    font-size: 13px;
}

.btn{
    width: 100%;
    background-color: #2b6bd9;
    padding: 2% 3%;
    border-radius: 3px;
}
.btn:hover{
    background-color: #e39b15;
}