.formData{
    width: 50%;
    margin: auto;
    border: 1px solid #ccc;
}
.formContent{
    width: 90%;
    margin: auto;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}
.formContent h2 {
    font-weight: 100;
    color: #333;
    font-size: 40px;
}
.formContent input[type="email"] , input {
    width: 100%;
    height: 50px;
    max-width: 85%;
    margin: 3%;
    outline: none;
    font-size: 25px;
    transition: all 300ms;
    border: 1px solid #ccc;
    padding: 1%;
}
.formContent input[type="email"]:focus{
    transform: scale(1.2);
}
.formContent input[type="submit"]{
    border: none;
    background-color: rgb(7, 148, 173);
    color: white;
    cursor: pointer;
    transition: 200ms;
    font-weight: 100;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.formContent input[type="submit"]:hover{
    transform: scale(1.1);
    
}

.notFound{
    width: 70%;
    margin: auto;
    background-color: red;
    color: white;
    padding: 1%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.founded{
    width: 70%;
    margin: auto;
    background-color: rgb(7, 172, 34);
    color: white;
    padding: 2%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}
#typeCode{
    max-height: 330px;
    max-width: 175px;
    text-align: center;
    font-size: 50px;
}

@media(max-width:600px){
 .formData {
    width: 100%;
    height: 75vh
 }
 .formContent input[type="email"], input{
     font-size:16px;
 }
}