* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
img{
    position: absolute;
    width: 100%;
    height: auto;
}
container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
p{
    margin-top: 200px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}
input{
    width: 370px;
    display: block;
    height: 50px;
}
.input1{
    position: relative;
    color: #fff;
    margin-top: 25px;
    border: none;
    border-bottom: solid 2px #fff;
    background-color: rgba(0, 0, 0, 0);
    border-bottom: solid 2px #fff;
    padding-left: 5px;
    font-size: 18px;
    font-style: italic;
}

.input2{
    margin-top: 40px;
    color: white;
    background-color: rgb(255, 217, 0);
    border: none;
    font-size: 18px;
}
.input1:focus {
    font-style: normal;
    color: black;
    outline: none;
    background-color: #fff;
}
.input1:focus::placeholder{
    color: transparent;
}
