*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: teal;

}
.container{
    height: 300px;
    width: 250px;
    /* border: 1px solid red; */
    position: relative;
}
.container input{
    height: 35px;
    width: 90%;
    margin-top: 20px;
    margin-left: 10px;
    border: none;
    border-radius: 10px;
    box-shadow: 10px 10px 10px gray, -10px 10px 10px gray
   , inset -8px 8px 13px gray;
   font-size: 1.34rem;
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}
.container button{
    height: 30px;
    width: 100%;
    margin-top: 40px;
    color:white ;
    border-radius: 15px;
    font-size: 25px;
    background-color:rgba(10, 6, 6, 0.869);
    font-family: 'Times New Roman', Times, serif;
    box-shadow: -1px -3px 9px white,
    inset 2px 2px 9px white;

}
