
.register-card{
    position: relative;
    width: 400px;
    height: 550px;
    border-radius: 20px;
    background:  rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* z-index: 1001; */

}
.registration-container {
    /* z-index: 100;
    display: none;
     background-color: rgba(255, 255, 255, 0.9);
     text-align: center;
     padding: 40px;
     border-radius: 10px;
     box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
     /* height: 100vh; */
     position: fixed;
     display: none;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.712);
     z-index: 1000;
     transition: opacity 0.3s, visibility 0.3s;
     opacity: 0;
     visibility: hidden;
     text-align: center;
     justify-content: center;
     
   }
  
   /* main{
    filter: blur(5px);

   } */
.registration-container.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    justify-content: center;
    align-items: center;
  }
  
  
  .register-container-btn{
  position: absolute;
  bottom: 1px;
  }
 .reg-head {
     font-size: 36px;
     color: #007bff;
     margin-bottom: 20px;
 }
 
 .reg-form {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
 }
 
 .reg-label {
     font-size: 18px;
     color: #007bff;
     margin-top: 10px;
 }
 
 
 .input-field-reg {
     width: 200px;
     height: 40px;
     padding: 3px;
     border: 2px solid #007bff;
     border-radius: 5px;
     font-size: 16px;
     margin-top: 5px;
 }
 
 .gender {
     display: flex;
     /* position: absolute; */
     align-items: left;
     margin-top: 7px;
     margin-bottom: 10px;
     /* justify-content: center; */
     color: #007bff;
 }
 
 .register-button2 {
    text-align: center;
     background-color: #007bff;
     color: white;
     font-size: 20px;
     padding: 12px 30px;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     margin-top: 20px;
     transition: background-color 0.3s ease;
 }
 
 .register-button2:hover {
     background-color: #0056b3;
     transform: scale(1.05);
 }
.close-btn-form{
    /* float: left; */
    display: block;
    /* right: 5px; */
    /* top: -5px; */
    text-align: right;
}
.btn-outline-danger{
    border-top-right-radius: 15px;
    position: absolute;
    right: 5px;
    top: 5px;
}
 