@import url("https://use.typekit.net/mwl4krd.css");

* {
    margin: 0;
    padding: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

body {
    font-family: brandon-grotesque, sans-serif; 
    color: #000000;
}

.main__container {
/*     margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
    display: flex;
    align-items: center;
    margin: 75px;
    padding: 30px;
} 

.title h1 {
    font-size: 8rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
}
.form__container {
    margin-left: 100px;
}
form {
    display: flex;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
    padding: 30px 65px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.7);
    transition: 0.3s;
    width: 60%;
    color: white;
}
form > div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
label {
    font-size: 1.4rem;
    margin: 10px 0;
}
input,
select {
    padding: 5px;
    font-size: 1.1rem;
    border: none;
    padding: 8px 40px;
    color: #000000;
    width: 100%;

}
input:disabled {
    color: #000000;
    background-color:rgb(255, 255, 255);
}
input#billAmt:invalid {
    border: 2px solid red;
    
}
.fas {
    padding: 10px;
    position: absolute;
    margin-left: 5px;
    color: rgb(0, 0, 0);
    min-width: 10px;
    text-align: center;
    margin-top: 53px;}
select {
    
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:url('data:image/svg+xml;utf8,<svg  xmlns="http://www.w3.org/2000/svg" width="100" height="50"><polygon points="0,0 100,0 50,50" style="fill:%23000000;"/></svg>');
    background-position: right 10px top 50%;
    background-repeat: no-repeat;
    background-size: 15px;

}
select:focus,
select:hover {
    outline: none;
}

@media only screen and (max-width: 768px) {
    .main__container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .form__container {
        margin: 0;
        padding: 0;
    }
    .title h1 {
        font-size: 5rem;
        text-align: center;
        
    }


}