* {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: arial;
    margin: 0px;
    min-height: 100vh !important;
    height: auto !important;
    width: 100% !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: #edebeb !important;
}

header {
    background-image: url(../images/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -10px;
    flex-direction: column;
}

main {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0px;
    width: 400px;
    background-color: #FFF;
}

form {
    padding: 20px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

h4 {
    color: #020817;
    margin-top: 0;
    font-size: 14px;
}

h3 {
    color: #020817;
    margin-top: 0;
    font-size: 16px;
}

.input-group {
    padding: 5px 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.input-group .field,
input[type=file] {
    width: 100%;
    padding: 7px;
    border: 0px solid #bde8ff;
    border-radius: 5px;
    box-sizing: border-box;
    outline: none;
    color: #020817;
    font-family: arial !important;
    background-color: #FFF;
}

.input-group .submit-btn {
    width: 100%;
    height: 40px;
    padding: 5px;
    background: #07239b;
    border: none;
    font-size: 14px;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 0;
    color: #FFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.three {
    display: grid !important;
    grid-template-columns: 33% 33% 33% !important;
    gap: 2px;
}

.two {
    display: grid !important;
    grid-template-columns: 50% 50% !important;
    gap: 2px;
    justify-items: start;
}

.five {
    display: grid !important;
    grid-template-columns: 10% 30% 20% 20% 20% !important;
    gap: 2px;
    justify-items: start;
}

.input-group label {
    text-align: left !important;
    width: 100%;
    display: block;
    color: #020817;
    font-weight: bold;
    ;
    margin-bottom: 2px;
}

.tagline {
    margin-bottom: 20px;
}

.input-group div label {
    display: unset !important;
}

.text-start {
    text-align: left;
}

.text-justify-wrap {
    text-align: justify;
    white-space: break-spaces;
    font-size: 13px;
}

.color-07239b {
    color: #07239b;
}

@media (max-width: 500px) {
    main {
        width: 100%;
        height: 100vh;
    }
}