.process-step {
    border: 5px #ebebeb solid;
    border-radius: 100%;
    line-height: 0;
    background: #959595;
    text-align: center;
    align-items: center;
    justify-content: center;
    align-self: center;
    display: flex;
    color: #fff;
    width: 45px;
    height: 45px;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 7px;
    margin-right: 5px;
    z-index: 4;
    cursor: pointer;
}

.process-step:hover{
    border: 5px #d8d8d8 solid;
}

.process-step-active {
    background-color: #f89828;
}

/* Custom Login/Register Background */
.bg-login-image {
    background: url('/front/img/bk-login.jpg') !important;
    background-position: center !important;
    background-size: cover !important;
}

.bg-register-image {
    background: url('/front/img/bk-login.jpg') !important;
    background-position: center !important;
    background-size: cover !important;
}

.bg-password-image {
    background: url('/front/img/bk-login.jpg') !important;
    background-position: center !important;
    background-size: cover !important;
}

/* Modern Login/Register Card Styling */
.card.o-hidden.border-0.shadow-lg {
    border-radius: 1rem !important;
    overflow: hidden;
}

.card.o-hidden.border-0.shadow-lg .card-body {
    padding: 0;
}

.bg-login-image, .bg-register-image, .bg-password-image {
    border-radius: 0;
    min-height: 100%;
    position: relative;
}

.bg-login-image::before,
.bg-register-image::before,
.bg-password-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(105, 62, 224, 0.85) 0%, rgba(67, 97, 238, 0.75) 100%);
    z-index: 1;
}

.bg-login-image > *,
.bg-register-image > *,
.bg-password-image > * {
    position: relative;
    z-index: 2;
}

/* Form styling enhancements */
.form-control-user {
    border-radius: 10rem !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem !important;
    border: 2px solid #e3e6f0 !important;
    transition: all 0.3s ease !important;
}

.form-control-user:focus {
    border-color: #693EE0 !important;
    box-shadow: 0 0 0 0.2rem rgba(105, 62, 224, 0.25) !important;
}

.btn-user {
    border-radius: 10rem !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.btn-primary.btn-user {
    background: linear-gradient(135deg, #693EE0 0%, #4361EE 100%) !important;
    border: none !important;
}

.btn-primary.btn-user:hover {
    background: linear-gradient(135deg, #5a35c7 0%, #3a56d4 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(105, 62, 224, 0.4) !important;
}

/* Card shadow enhancement */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Form group spacing */
.form-group {
    margin-bottom: 1.25rem !important;
}

/* Links styling */
a.small {
    color: #693EE0 !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

a.small:hover {
    color: #4361EE !important;
    text-decoration: none !important;
}

/* RTL adjustments */
.rtl .card.o-hidden.border-0.shadow-lg .row {
    flex-direction: row-reverse;
}

.rtl .bg-login-image,
.rtl .bg-register-image,
.rtl .bg-password-image {
    border-radius: 0 1rem 1rem 0 !important;
}