@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap');

:root {
  --maven: "Maven Pro", sans-serif;
}

.home-content{
    min-height: 100vh;
}
.main-logo{
    width: 60%;
    max-width: 300px;
}
.comming-box{
    display: inline-block;
    background-color: #00EFF2;
    border-bottom: 15px solid #2DBABA;
    padding: 15px;
}
.comming{
    font-family: var(--maven);
    font-size: 17px;
    font-weight: 600;
    color: #103E7C;
    line-height: 20px;
}

.comming-date{
    font-family: var(--maven);
    font-size: 30px;
    font-weight: 800;
    color: #103E7C;
    line-height: 25px;
}
.txt-general{
    font-family: var(--maven);
    font-size: 23px;
    font-weight: 600;
    color: #ffffff;

}

.txt-general-sm{
    font-family: var(--maven);
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}

.answer-box{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 450px;
}

a {
    text-decoration: none;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

a:hover{
    color: #00EFF2;
}

#form-content{
    width: 80%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.main-button{
    background-color: #00eff2;
    color: #071a34;
    font-size: 16px;
    width: 100%;
    line-height: 35px;
    border: none;
    font-weight: 300;
    text-transform: uppercase;
}

.main-button:hover{
    background-color: #1a7172;
    color: #ffffff;
}

.invalid-feedback {
    color: #f28315 !important;
}