body{
    /*background-color: #1D3557;*/
    background-image: url(../images/background4.png);
    background-repeat: no-repeat;
    background-size:cover;
}
main{
    display: grid;
 grid-template-columns: 1fr 1fr;
}
#form{
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 800px;
}
#illustrate{

    width: 100%;

}
#illustrate h1{
    font-size: 50px;
    color: white;
    text-align: center;
}
figcaption{
    font-size: 50px;
    color: white;
    text-align: center;
}
figure{
    width: 60%;
    margin: 0 auto;
}
#illustrate img{
 width: 100%;
}
form{
    width: 50%;
    min-width: 300px;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 0.3rem;
    border: none;
    padding: 15px;
    box-shadow: 0 0 1px black;
    display: flex;
    flex-direction: column;
}
fieldset{
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    padding: 15px;
}
.media{
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(53, 53, 56);
}
a{
    text-decoration: none;
}
.media a{
color:rgb(42, 44, 48);
text-decoration: none;
text-align: center;
}
.media a i{
    color:#1D3557;
}
input{
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 7px;
    border: none;
    border-radius: 0.3rem;
    box-shadow: 0 0 1px black;

}
input:focus{
 outline: none;
}
.logo2{
    margin: 0 auto;
   width: 15%;
   display: none;
   margin-bottom: 0px;
}

.logo2 img{
    width: 100%;
}
button {
    margin-top: 10px;
    background-color: #006aff;
    color: white;
    font-weight: bolder;
    font-size: medium;
    border: none;
    border-radius: 0.7rem;
    padding: 13px;
    box-shadow: 0 0 1px black;
    margin-bottom: 10px;
}

#inscript {
    background-color: rgb(9, 255, 0);
    color: white;
    font-size: medium;
    font-weight: bolder;
    padding: 13px;
    border-radius: 0.7rem;
    text-align: center;
    margin-top: 10px;
}
#inscript:hover,
button:hover {
    opacity: 0.5;
    box-shadow: 0 0 4px black;

}

@media screen and (max-width:700px){
    #illustrate{
        display: none;

    }

    main{
        grid-template-columns: 1fr;
    }
    #form{
        display: flex;
        flex-direction: column;
        align-items: start;
        background-image: url(../images/background4.png);
        background-repeat: no-repeat;
    }
    form{
        background-color: white;
        min-width: inherit;
        width: 90%;
    }

    .logo2{

       display: block;


    }

    }
