
.mainTextContainer {
    display: flex; 
    justify-content: center; 
    padding-top: 20px;
    animation: fadein 1.5s;
    height: calc(60vh); /* Enables y-scroll based on window size */

}

@keyframes fadein {
    
        0% {opacity: 0;}
        100% {opacity: 1;}
}

.textFieldContainer {
    /* float: right; */
    padding-top: 10px;
    padding-right: 10px;
    font-size: 18px;

}

.formTitle {
    font-family: inherit;
    font-size: 20px;
    color: rgb(128, 128, 128);
    text-align: center;
    
}

.textFieldContainer input {
    /* float: right; */
    outline: none;
    background: #ededed no-repeat 9px center;
    border: solid 1px #ccc;
    padding: 9px 1px 9px 15px;
    width: 150px;
    border-radius: 10em;
    transition: all .5s;
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 15px;
    color: #0190C9;
    height: 25px;
    
  }

.textFieldContainer :focus {
    width: 180px;
    background-color: #fff;
    border-color: skyblue;
    box-shadow: 0 0 5px rgba(109, 207, 246, .5);
}

.textField ::-webkit-search-decoration, ::-webkit-search-cancel-button {
    display: none;
}

.formButton {

   align-content: center;
   border-radius: 15px;
   background-color: white;
   border: #0190C9;
   color: #0190C9;
   outline: none;
   font:normal normal 300 1.3em 'Open Sans';
   text-decoration:none;	
   border:1px solid #1FA8F7;
   border-radius:100px;
   padding: .3em 1.2em;
   margin:5px;
   background-size: 200% 100%;	
   background-image: linear-gradient(to right, transparent 50%, #1FA8F7 50%);
   transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
   }

.formButton:hover {
    text-decoration: none;
	color:rgba(255, 255, 255, 1);
	background-color:#1FA8F7;
	background-position: -100% 100%;
}

.textArea {

    outline: none;
    background: #ededed no-repeat 9px center;
    border: solid 1px #ccc;
    padding: 9px 1px 9px 15px;
    border-radius: 1em;
    transition: all .5s;
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 15px;
    color: rgb(70, 70, 70);
    font-weight: bold;
    resize: none;
    height: 100px;
    
}

.textArea:focus {
    background-color: #fff;
    height: 150px;
    border-color: skyblue;
    box-shadow: 0 0 5px rgba(109, 207, 246, .5);
}

