body{
    background-color: transparent;
     /* background-color: rgba(255, 255, 255, 0.5);  */
     background-color: aqua;
}
.container{
    display: flex;
    height: 100vh;
    justify-content: center;
}
form{
    background-color: rgb(160, 150, 150);
    border: 20px solid black;
    width: 300px;
    height: fit-content;
    margin: auto;
    padding: auto;
    padding-left: 15px;
    line-height: 30px;
    position: relative;
}
form button{
        background-color: black;
        display: inline;
        color: white;
        /* margin-top: 10px; */
        margin: 10px;
        width: 85%;
        height: 40px;
        cursor: pointer;
        
}
input{
    width: 270px;
    height: 35px;
    font-size: 15px;
    display: inline;
}
.comment input{
    width: 270px;
    height: 38px;
    display: inline;
}
.close-btn {
    position: absolute;
    top: -30px;
    right: -30px;
    background-color: red;
    border: none;
    width: 20px;
    height: 20px;
    color: white;
    cursor: pointer;
    border-radius: 10%;
    font-size: 12px;
}
.close-btn a{
    text-decoration: none;
    color: white;
}.close-btn:hover {
    background-color: #e64a19;
}
@media only screen and (max-width: 480px) and (min-width:320px){
    .container{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    form{
        background-color: rgb(160, 150, 150);
        border: 20px solid black;
        position: relative;
        width: 250px;
        margin: 0;
        height: fit-content;

    }
    form p{
        font-size: 20px;
        margin: auto;
        display: inline;
    }
    form input{
        margin: auto;
        display: inline;
        width: 90%;
        height: 30px;
    }
    form .comment input{
        width: 90%;
        height: 32px;
    }
    form button{
        width: 90%;
        display: inline;
    }
}
@media only screen and (max-width: 1025px) and (min-width:480px){
    .container{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    form{
        background-color: rgb(160, 150, 150);
        border: 20px solid black;
        position: relative;
        width: 450px;
        margin: 0;
        height: 650px;
        padding: 10px;

    }
    form p{
        font-size: 25px;
        margin: 10px auto;
        display: inline;
    }
    form input{
        margin: auto;
        display: inline;
        width: 90%;
        margin: 10px auto;
        height: 35px;
    }
    form .comment input{
        width: 90%;
        height: 38px;
    }
    form button{

        width: 90%;
        display: inline;
    }
}

/* @media only screen and (max-width: 768px){
    body{
        width: fit-content;
    }
    form{
        background-color: rgb(160, 150, 150);
        border: 25px solid black;
        height: fit-content;
        width: fit-content;
        margin: auto;
        padding: auto;
        padding-left: 8px;
        margin-top: 10px;
        position: relative;
    }
    form p{
        font-size: 30px;
    }
    form button{
            background-color: black;
            color: white;
            margin-top: 20px;
            font-size: 40px;
            width: 80%;
            height: fit-content;
            cursor: pointer;
            margin-right: -10px;
            margin-bottom: 20px;
            
    }
    input{
        width: 80%;
        height: 5vh;
        font-size: 30px;
    }
    .comment input{
        width: 80%;
        height: 6vh;
        font-size: 40px;
    }
    .close-btn {
        position: absolute;
        top: -45px;
        right: -15px;
        background-color: rgb(248, 9, 9);
        border: none;
        width: 25px;
        height: 25px;
        text-align: center;
        color: white;
        cursor: pointer;
        border-radius: 5%;
        font-size: 20px;
    }
    .close-btn a{
        text-decoration: none;
        color: white;
    }} */