*{
    margin: 0;
    padding: 0;
}
.container{
    width: 100%;
    height: 100vh;
    background: rgb(8, 51, 138);
    overflow-x: hidden;

}

#error-msg{
    font-size: 20px;
    font-weight: bold;
    color: red;
    position: relative;
    top: 50px;
    left: 650px;
}

.main{
    /* border: 3px solid black; */
    text-align: center;
    position: absolute;
    top: 100px;
    margin-left: 25%;
    margin-right: 25%;
    padding: 15px;
    height: 450px;
    background: papayawhip;
    border-radius: 15px ;
    box-shadow: 0px 0px 25px rgb(88, 59, 12);
    display: flex;
    /* align-items: center; */
    justify-content: space-around;
}

#form-row{
    margin-top: 20px;
}

.txt{
    margin-top: 100px;
    font-size: 35px;
    /* color: aliceblue; */
    text-transform: capitalize;
    font-weight: bold;
    text-shadow: 0px 0px 10px black;
}
input{
    margin: 8px;
    width: 250px;
    padding: 7px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    text-transform: capitalize;
    box-shadow: 0px 0px 12px white;
}

#btn1{
    width: 100px;
    height: 30px;
    margin-top: 15px;
    background: black;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    border: none;
}

#btn1:hover{
    width: 120px;
    height: 35px;
    background: cornflowerblue;
    color: black;
    font-size: medium;
    font-weight: bold;
    transition: 0.5s;
}

.txt2{
    color: black;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    left: 400px;
    top: 79%;
}

@media(max-width:500px){
    *{
        margin: 0;
        padding: 0;
    }
    .container{
        width: 500px;
        height: 100vh;
        overflow-x: hidden;
    }

    .main{
        margin-left: 7%;
        margin-right: 7%;
        position: fixed;
        left: 1px;

    }

    .txt{
        font-size: 25px;
    }

    #error-msg{
        position: relative;
        left: 39%;
        top: 10%;
    }

    .txt2{
        position: relative;
        left: 10%;
        top: 80%;
    }
}