body {
    margin: 0;
    font-family: 'SolaimanLipi', Arial, sans-serif !important;
    background: linear-gradient(135deg, #f6f9fc, #f0f4ff);
    height: 100vh;
}
.register_app {
    min-height: 100vh;
    display: flex;
    justify-content: center;   /* horizontally center */
    align-items: center;       /* vertically center */
    padding: 20px;
}
.card{
    border-radius: 0px;
    border: none;
}
.card-body{
    padding: 0px;
}
.left-panel {
    background-size: cover;
    position: relative;
}

.left-panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.form-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background: #f9fbff;
    padding: 20px;
}

.form-box {
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 95%;
    padding: 20px;
    margin: 0px auto 0px;
    border: 1px solid #e5e9f2;
    background-image: repeating-linear-gradient(45deg,
            #f9fbff 0px,
            #f9fbff 10px,
            #f3f6ff 10px,
            #f3f6ff 20px);
}

.btn-type {
    border-radius: 5px;
    border: 1px solid #d0d5e1;
    background: #fff;
    font-weight: 600;
    padding: 8px 24px;
    transition: 0.3s;
}

.btn-type.active {
    background: #cde8ff;
    border-color: #8dc7ff;
}

.text-link {
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    color: #6c757d;
}

.text-link a {
    color: #0d6efd;
    text-decoration: none;
}

.text-link a:hover {
    text-decoration: underline;
}
.error-msg {
  color: #fe4d2e ; 
  display: block;
}

@media (max-width: 992px) {
    .left-panel {
        display: none;
    }

    .form-section {
        background: linear-gradient(135deg, #f6f9fc, #f0f4ff);
        padding: 40px 15px;
    }
}