* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-image: url(dark-paradise-aesthetic-wallpaper-picjumbo-com.jpg);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body h1{
    color:transparent;
    background:linear-gradient(to right, rgb(255, 58, 58), pink, grey);
    background-clip: text;
    filter: drop-shadow(0px 0px 10px rgb(255, 180, 180));
}

#form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background:linear-gradient(to right bottom, rgba(255, 58, 58, 0.6), rgba(255, 192, 203, 0.6), rgba(128, 128, 128, 0.6) 70%);
    backdrop-filter: blur(10px);
    padding: 40px 50px 40px 50px;
    border-radius: 15px;
    text-align: center;
    border: 0.5px solid rgba(122, 120, 120, 0.719);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.493);
}

#form h2{
    color: transparent;
    background:linear-gradient(to right,rgb(255, 73, 103), rgb(48, 45, 59));
    background-clip: text;
}

#form .inp {
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid rgb(212, 212, 212);
    padding: 4px;
    transition: all 0.35s;
    color: white;
    display: inline;
}
#form div{
    color: rgb(228, 228, 228);
    font-size: 14px;
}
#form div select {
    margin: 10px 0px 0px 0px;
    transition: all 0.35s;
    width: 180px;
}

#form label input{
margin: 10px 2px 0px 2px;
}
#form label:focus-within{
    color: white;
}
#form label h4{
    color: white;
}

#form .inp::placeholder {
    font-size: 14px;
    color:rgb(236, 236, 236) ;
    transition: all 0.35s;
}

#form .inp:focus-within::placeholder{
    color: white;
}
#form .inp:focus-within{
    border-bottom: 1px solid white;
}

#form label #date{
    border: none;
    background-color: rgba(247, 211, 211, 0.342);
    padding: 10px 30px;
    border-radius: 20px;
}

#form label #age{
    width: 50px;
    padding: 15px 0px 15px 11px;
    border-radius: 8px;
    border: none;
    background-color: rgba(168, 168, 168, 0.623)
}

#form select{
    padding: 10px 20px;
    border-radius: 20px;
    outline: none;
    border: none;
    background-color: rgba(247, 211, 211, 0.342);
    color: rgb(255, 255, 255);
}
#form select option{
    color:black ;
}

#form #btn{
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(192, 192, 192, 0.719);
    background-color: rgba(206, 206, 206, 0.74);
    color: white;
    font-weight: 700;
    font-size: 14px;
}