* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to right bottom, #ea2c62 , #120078);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    width: 80%;
    margin: 0 auto;

}

.main-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    height: 80vh;
    background-image: url("https://png.pngtree.com/thumb_back/fh260/background/20190223/ourmid/pngtree-mobile-phone-new-product-release-colorful-wind-city-background-material-backgroundmobile-image_83617.jpg") ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.main-container::before{
    content: ""; 
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom,rgba(0,0,0,0),rgba(32, 31, 31, 0.87));  */
    z-index: 0;
}

.top {
    text-align: center;
    z-index: 999;
}

.top h1{
    color: white;
    line-height: 2;
    font-weight: 700;
    
}

.top input,
.top button {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 5px;
    outline: none;
    border: none;

}

.top input{
    background-color: rgba(0,0,0,.5);
    border-bottom: solid 2px green;
    border-radius: 10px 0 10px 0;
    text-align: center;
    font-size: 14px;
    color:white;
    
} 

.top input:focus{
    color: white;
    font-size: 15px;
}

.top input ::placeholder{
    color: rgba(255, 255, 255);
}

.top button{
    background-color: #db6400;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: all .3s;
    z-index: 999;
}

.top button:hover {
    background-color: #b05102;
}

.top .error{
    color: white;
    font-size: 14px;
}

.icon{
    text-align: center;
    padding-top: 25px;
}

.location{
    padding-bottom: 15px;
    text-align: center;
    color: white;
    line-height: 1.6;
}

.location .city{
    font-size: 20px;
    font-weight: bold;
}

.current{
    width: 100%;
    position: relative;
    padding-top: 10px;
    color: white;
    text-align: left;
    padding-left: 48px;
}

.current ::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 1px;
    background-color: white;
    margin-left: 45px;
}

.current > *{
    padding-bottom: 10px;
}