.custom-registration-form
 {
    max-width: 700px;
    margin:0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.custom-registration-form table{
    width: 100%;
}
.custom-registration-form table .left-col{
    width: 250px;
}
.custom-registration-form table td {
  border: 0px;
  background: transparent !important;
  padding: 12px 0;
  vertical-align: top;
}
.custom-registration-form .btn-register{
    background-color: #623668;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}
.custom-registration-form .btn-icon {
    font-size: 1.2rem;
}
.custom-registration-form .btn-register:hover{
    background-color: #844e8b;
    transform: translateY(-1px);
}
.custom-registration-form label {
  font-size: 18px;
  font-weight: 600;
  font-family: cardo;
}

.custom-registration-form input[readonly] {
    background-color: #f3f4f6;
    color: #6b7280;
}