.wrapper{
    position: relative;
    max-width: 500px;
    width: 100%;
    background: beige;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    border-radius: 20px;
    }
    .wrapper h2{
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    }
    .wrapper h2::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 28px;
    border-radius: 12px;
    background: #4070f4;
    }
    .wrapper form{
    margin-top: 30px;
    }
    .wrapper form .input-box{
    height: 40px;
    margin: 35px ;
    }
    form .input-box input{
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 10px;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    border: 1.5px solid #C7BEBE;
    border-bottom-width: 2.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    
    }
    .input-box input:focus,
    .input-box input:valid{
    border-color: #4070f4;
    }
    form .policy{
    display: flex;
    align-items: center;
    }
    form h3{
    color: #707070;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    }
    .input-box.button input{
    color: #fff;
    letter-spacing: 1px;
    border: none;
    background: #4070f4;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: bold;
    
    }
    .input-box.button input:hover{
    background: #0e4bf1;
    
    }
    form .text h3{
    color: #333;
    width: 100%;
    text-align: center;
    }
    form .text h3 a{
    color: #4070f4;
    text-decoration: none;
    }
    form .text h3 a:hover{
    text-decoration: underline;
    }
    
    @media (max-width: 450px) {
    .wrapper{
      
      max-width: 400px;
      padding: 24px;
    }
    }
    .ve{
      display: flex;
      justify-content: center;
    }


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    
   



.btn{
    display: flex;
    justify-content: center;
    gap: 2rem;
    
}
.btnid{
    padding: .5rem;
    font-size: 20px;
    border-radius: 10px;
    text-align: center;
    
    color: #fff;
    letter-spacing: 1px;
    border: none;
    background: #4070f4;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: bold;
}
.btnid:hover{
    background-color: #0e4bf1 ;
}
.btnid a{
    font-weight: bold;
    text-decoration: none;
    color: #fff;
   
}

    /* Body Styling */
    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #333;
    }

    /* Header */
    header {
        
        background-color: #333;
        color: #fff;
        padding: 10px 20px;
        text-align: center;
    }

    /* Navigation */
    nav {
        background-color: #444;
       
        display: flex;
        justify-content: center;
        position: relative;
    }

    nav a {
        margin-right:3rem ;
        font-weight: bold;
        color: #fff;
        padding: 10px 20px;
        text-decoration: none;
        text-align: center;
        font-size: 20px;
    }

    nav a:hover {
        background-color: #555;
    }

    /* Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        
        cursor: pointer;
        padding: 10px;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 3px 0;
        transition: all 0.3s ease;
    }

    /* Cross Icon Animation */
    nav.active .hamburger div:nth-child(1) {
        transform: rotate(50deg) translate(9px, 6px);
    }

    nav.active .hamburger div:nth-child(2) {
        opacity: 0;
    }

    nav.active .hamburger div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Main Content */
    main {
        padding: 20px;
    }

    /* Footer */
    .stfooter {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px;
        position: fixed;
        width: 100%;
        bottom: 0;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        nav {
            flex-direction: column;
            align-items: center;
        }
.stfooter{
           position: absolute;
        }
        .hamburger {
            display: flex;
        }

        nav a {
            display: none;
            width: 100%;
            border-bottom: 1px solid #555;
            
        }

        nav.active a {
            display: block;
        }
        .btn{
   flex-direction: row;
   justify-content: center;
   align-items: center;
    
}
.btnid{
    text-align: center;
    padding: .5rem;
    width: 300px;
    border: solid 3px goldenrod;
    border-radius: 25px;
    background-color: rgb(92, 78, 15);
    
}
    }

    @media (max-width: 480px) {
        header {
            font-size: 1.2em;
        }
        .stfooter{
            position: relative;
            margin-top: 30px;
         }

        nav a {
            padding: 12px;
        }
        h1,h2{
            font-size: 20px;
        }
        .btn{
   flex-direction: column;
   justify-content: center;
   align-items: center;
    
}
.btnid{
    text-align: center;
    padding: .5rem;
    width: 250px;
    border: solid 3px goldenrod;
    border-radius: 20px;
    background-color: rgb(92, 78, 15);
    
}


    }