@font-face {
    /* font-family: sfui;
    src: url(assets/fonts/sf-ui-text-2-cufonfonts/SFUIText-BoldItalic.ttf); */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('../images/banner-notm.jpg');
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: white;
    line-height: 1.2;
}
.container{
    max-width: 900px;
    margin: 0 auto;
}
img {
    max-width: 100%;
}
.logo img {
    max-width: 300px;
}
h1{
    font-family: 'Inknut Antiqua', serif;
    font-size: 50px;
    margin-bottom: 30px;
    margin-top: 25px;
    font-size: 72px;
    background: linear-gradient(90deg, rgba(227,204,92,1) 0%, rgba(202,153,73,1) 100%, rgba(194,136,67,0.7259278711484594) 100%, rgba(227,204,92,1) 100%, rgba(2,0,36,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 15px;
}
p{
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
}
.innerContainer{
    text-align: center;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-control{
    width: 100%;
    padding: 1em 4.5em 1em 1em;
    border: 0;
    border-radius: 5px;
    background-color: #5a4525;
    font-family: 'Montserrat', sans-serif;
}
.btn-primary{
    width: 200px;
    border: none;
    background-color: #c06d25;
    color: white;   
    font-weight: 600;
    font-size: large;
    border-radius: 5px;
    height: 40px;
    cursor: pointer;
}
.w-50 {
    width: 50%;
}
.w-100 {
    width: 100%;
}
.form-container {
    background: url('../images/form-bg-new.jpg') no-repeat;
    width: 100%;
    height: 30em;
    background-size: cover;
    padding: 2em 5em;
    /* display: flex;
    flex-direction: column;
    padding: 2em 5em;
    background-color: rgb(255 255 255 / 20%);
    backdrop-filter: blur(10px); */
}
.logo-title{
    display: flex;
    padding-bottom: 2em ;
    align-items: center;
    justify-content: center;
}
.form-logo{
    width: 20%;
    padding-right: 1em;
}
.form-element {
    /* padding: 0 15px; */
    margin-bottom: 15px;
}
.form-element:last-child {
    margin-bottom: 0;
}
.h2{
    padding-top: 30px;
    padding-bottom: 20px;
}

input::placeholder{
    color: #fff;
}
@media only screen and (max-width:992px){
   .container {
       max-width: 90%;
   }
   h1{
    font-size: 40px;
}
.form-logo{
    width: 30%;
    padding-right: 1em;
}
}


@media only screen and (max-width:767px){
    h1{
        font-size: 40px;
    }
    .form-logo{
        width: 50%;
        padding-right: 1em;
    }
 }

@media only screen and (max-width:460px){
    .w-50 {
        width: 100%;
    }
    h1{
        font-size: 40px;
    }
 }
 @media only screen and (max-width:280px){
    .w-50 {
        width: 100%;
    }
    h1{
        font-size: 30px;
    }
 }

