body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f78ce0;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 50%;
    
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}


.btn {
    padding: 20px 100px;
    font-size: 16px;
    border: none;
    background-color: #65175c;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #e8a4e7;
}




        
.s1{
    background: black;
    border-radius: 10px;
    box-shadow: inset -2px 2px 2px white;
    margin-left: 350px;
    margin-right: 350px;
    padding: 40px 110px;
    margin-top: 30px;
}

.s1 h2{
    text-align: center;
    color: rgb(167, 55, 223);
    margin-top: 20px;
    margin-left: 20px;
    font-size: 40px;
    font-family: initial;
    padding-bottom: 10px;
    font-weight: 500;
    

}
form{
    display: flex;
    flex-direction: column;
   margin-bottom: 50px;
   gap: 20px;
    margin-top: 20px;
    margin-right: 60px;
  
    

}
form input{
    margin-right: 100px;
    width: 130%;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin: auto;

    
}
form button{
    width: 90%;
    padding: 12px;
    border-radius: 15px;
    background-color: blueviolet;
    font-size: 18px;
    color: black;
    margin:auto;
    margin-top: 20px;
    margin-left: 50px;
}