@import url("https://fonts.googleapis.com/css2?family=Poppins : wght@300;400;500;600;700;800;900@ display=swap");

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;    
}

body {

display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: url('./dices-img/bg-img.png') no-repeat;
background-size: cover;
background-position: center;
}

.wrapper{
    margin-top: -10px;
    width : 750px;
    background: rgba(255,255,155,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(50px);
    border-radius: 10px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 10px;

}

.wrapper h1{
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color:antiquewhite;
}

.wrapper .input-box{
    
    justify-content: center;
    align-items: center;
   /* background: slateblue;  */
}

.input-box .input-field{
    position: relative;
    width: 80%;
    /* background:salmon;  */
}

.input-box .input-field input{
    width:100%;
    height: 100%;
    background : transparent;
    border: 2px solid rgba(255,255,155,0.2);
    outline: none;
    font-size: 25px;
    color: #fff;
    border-radius: 6px;
    padding: 15px 15px 15px 40px;
    margin: 10px;

}

.input-box .input-field input::placeholder
{
    color:#fff;
}

.wrapper .btn
{
width : 100%;
height : 45px;
background: #fff;
border: none;
outline: none;
border-radius: 6px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
cursor: pointer;
font-size: 20px;
color: #333;
font-weight:600;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@media (max-width: 576px) {
    .input-box .input-field {
        width : 100%;
        margin : 10px 0;
    }
}