:root {
    background: #f5f6fa;
    color: #9c9c9c;
    font: 1rem "PT Sans", sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body, .container {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
a {
    color: inherit;
}
a:hover {
    color: #7f8ff4;
}
.container {
  
}
.uppercase {
    text-transform: uppercase;
}
.btn {
    display: inline-block;
    background: transparent;
    color: inherit;
    font: inherit;
    border: 0;
    outline: 0;
    padding: 0;
    transition: all 200ms ease-in;
    cursor: pointer;
}
.btn--primary {  
    background: #7f8ff4;
    color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
    border-radius: 2px;
    padding: 12px 36px;
}
.btn--primary:hover {
    background: #6c7ff2;
}
.btn--primary:active {
    background: #7f8ff4;
    box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, .2);
}
.btn--inside {
   margin: 10px auto;
   width: 100%;
}
.form{
    width: 360px;
}
.form__field {
    width: 360px;
    background: #fff;
    color: #a3a3a3;
    font: inherit;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .1);
    border: 0;
    outline: 0;
    padding: 18px 18px;
    text-align: center;
}
.vector img{
    width: 480px;
}
.logo,.vector{
    text-align: center;
 margin-bottom: 20px;
 margin-top: 20px;
}
.logo img{
    width: 200px;
}
.section1{
    display: flex;
    align-items: center;
    justify-self: center;
    width: 80%;
    margin: auto;
}
.vector{
    width: 50%;
}
.output{
    width: 45%;
    display: grid;
    place-content: center;
}
.content h1{
    padding: 10px 0 0px;
    color: #302f2f;
}
.content p{
    color: #302f2f;
    padding: 10px 0 30px ;
}
@media (max-width: 991px){
    .section1 {
        width: 100%;
    }
}
@media (max-width: 768px){
    .section1{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}
@media (max-width: 520px){
    .logo img{
        width: 160px;
    }
    .form__field{
        width: 260px;
        padding: 12px 12px;
    }
    .btn--primary{      
        padding: 8px 30px;
    }
    .section1{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .output{
        width: 80%;
    }
    .vector img{
        width: 350px;
    }
    .content{
        text-align: center;
        margin: auto;
    }
    .content h1{
        font-size: 26px;
    }
    .content p{
        font-size: 16px;
    }
    .form{
        width: 260px;
        margin: auto;
    }
    .vector{
        width: 80%;
    }
}
@media (min-width:991px){
    .section1{
        margin-top: 80px;
    }
}