@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&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("image/bg1.png") no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper{
    width: 750px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 40px 35px 55px;
    margin: 0 10px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.1);
}

.wrapper h1{
    font-size: 35px;
    font-weight: 600;
    margin: 10px;
    text-align: center;
    color: white;
}

.wrapper .box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.box .field{
    position: relative;
    width: 48%;
    margin: 13px 0;
}

 .box .field input{
    width: 100%;
    height: 100%;
    outline: none;
    background: transparent;
    border: 2px solid white;
    padding: 10px 10px 10px 40px;
    border-radius: 10px;
    font-size: 16px;
    color: white;
    font-weight: 500;
 }

 .box .field input::placeholder{
    color: white;
    font-size: 16px;
 }

 .box .field i{
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 20px;
    transform: translateY(-50%);
    color: white;
 }

.wrapper .btn{
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    background-color: white;
    cursor: pointer;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    transition: 0.2s;
}

.btn:hover{
    transform: scale(1.02);
}

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















