 .rc-password-section {
     position: relative;
     overflow: hidden;
     min-height: 70vh;
     padding: 70px 0 90px;
     background:
         radial-gradient(circle at 5% 15%,
             rgba(255, 92, 69, .06),
             transparent 28%),
         #f6f8fb;
 }

 .rc-password-section::before,
 .rc-password-section::after {
     position: absolute;
     content: '';
     border-radius: 50%;
     pointer-events: none;
 }

 .rc-password-section::before {
     top: 100px;
     right: -100px;
     width: 250px;
     height: 250px;
     border: 38px solid rgba(255, 92, 69, .025);
 }

 .rc-password-section::after {
     bottom: -120px;
     left: -120px;
     width: 300px;
     height: 300px;
     background: rgba(255, 92, 69, .025);
 }

 .rc-password-section .container {
     position: relative;
     z-index: 1;
 }

 .rc-password-head {
     display: flex;
     align-items: end;
     justify-content: space-between;
     gap: 20px;
     margin-bottom: 32px;
 }

 .rc-password-head span,
 .rc-password-card-head span {
     color: #ff5c45;
     font-size: 12px;
     font-weight: 800;
     letter-spacing: .12em;
     text-transform: uppercase;
 }

 .rc-password-head h1 {
     margin: 6px 0;
     color: #13243d;
     font-size: 34px;
     font-weight: 800;
 }

 .rc-password-head p,
 .rc-password-card-head p {
     margin: 0;
     color: #778397;
 }

 .rc-password-head>a {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 12px 18px;
     border-radius: 9px;
     background: #ff5c45;
     color: #fff;
     font-weight: 700;
     text-decoration: none;
     box-shadow: 0 8px 20px rgba(255, 92, 69, .2);
     transition:
         transform .25s ease,
         box-shadow .25s ease,
         background-color .25s ease;
 }

 .rc-password-head>a:hover {
     color: #fff;
     background: #ed4933;
     box-shadow: 0 12px 26px rgba(255, 92, 69, .28);
     transform: translateY(-2px);
 }

 .rc-password-card {
     padding: 32px;
     border: 1px solid #e5e9f0;
     border-radius: 16px;
     background: #fff;
     box-shadow: 0 12px 30px rgba(30, 48, 76, .08);
     transition:
         transform .3s ease,
         box-shadow .3s ease,
         border-color .3s ease;
 }

 .rc-password-card:hover {
     border-color: rgba(255, 92, 69, .2);
     box-shadow: 0 18px 42px rgba(30, 48, 76, .12);
     transform: translateY(-3px);
 }

 .rc-password-card-head {
     display: flex;
     align-items: center;
     gap: 18px;
     margin-bottom: 30px;
     padding-bottom: 25px;
     border-bottom: 1px solid #edf0f4;
 }

 .rc-security-icon {
     display: grid;
     width: 62px;
     height: 62px;
     flex: 0 0 62px;
     place-items: center;
     border-radius: 16px;
     background: #fff1ee;
     color: #ff5c45;
     font-size: 24px;
     box-shadow: 0 8px 20px rgba(255, 92, 69, .1);
     animation: rcShieldFloat 3s ease-in-out infinite;
 }

 .rc-password-card-head h2 {
     margin: 5px 0;
     color: #172840;
     font-size: 25px;
     font-weight: 800;
 }

 .rc-form-group {
     margin-bottom: 24px;
 }

 .rc-form-group label {
     display: block;
     margin-bottom: 9px;
     color: #26364e;
     font-size: 13px;
     font-weight: 700;
 }

 .rc-form-group label span {
     color: #ff5c45;
 }

 .rc-password-input {
     position: relative;
 }

 .rc-password-input>i {
     position: absolute;
     top: 50%;
     left: 15px;
     z-index: 1;
     color: #9aa4b2;
     font-size: 13px;
     transform: translateY(-50%);
     transition: color .2s ease;
 }

 .rc-password-input:focus-within>i {
     color: #ff5c45;
 }

 .rc-password-input input {
     width: 100%;
     height: 50px;
     padding: 0 48px 0 43px;
     border: 1px solid #dfe4eb;
     border-radius: 10px;
     outline: none;
     background: #fff;
     color: #26364e;
     font-size: 13px;
     transition:
         border-color .2s ease,
         box-shadow .2s ease,
         background-color .2s ease;
 }

 .rc-password-input input:focus {
     border-color: #ff8c7b;
     box-shadow: 0 0 0 3px rgba(255, 92, 69, .1);
 }

 .rc-password-input input.rc-invalid {
     border-color: #dc3545;
     background: #fffafa;
     box-shadow: 0 0 0 3px rgba(220, 53, 69, .08);
 }

 .rc-password-input input.rc-valid {
     border-color: #35a667;
     background: #fbfffd;
 }

 .rc-password-toggle {
     position: absolute;
     top: 50%;
     right: 8px;
     display: grid;
     width: 36px;
     height: 36px;
     place-items: center;
     padding: 0;
     border: 0;
     border-radius: 8px;
     background: transparent;
     color: #8e99a9;
     transform: translateY(-50%);
     cursor: pointer;
     transition:
         color .2s ease,
         background-color .2s ease;
 }

 .rc-password-toggle:hover {
     background: #fff1ee;
     color: #ff5c45;
 }

 .rc-password-strength {
     margin: 3px 0 20px;
     padding: 14px 16px;
     border: 1px solid #e8ecf2;
     border-radius: 10px;
     background: #fbfcfe;
 }

 .rc-strength-head {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 15px;
     margin-bottom: 9px;
     color: #68768a;
     font-size: 11px;
 }

 .rc-strength-head strong {
     color: #8a96a8;
     font-size: 11px;
 }

 .rc-strength-track {
     overflow: hidden;
     height: 6px;
     border-radius: 10px;
     background: #e8ecf2;
 }

 .rc-strength-track span {
     display: block;
     width: 0;
     height: 100%;
     border-radius: inherit;
     background: #d7dce4;
     transition:
         width .3s ease,
         background-color .3s ease;
 }

 .rc-password-rules {
     padding: 20px;
     border: 1px solid #e7ebf1;
     border-radius: 12px;
     background: #f8fafc;
 }

 .rc-password-rules h4 {
     display: flex;
     align-items: center;
     gap: 8px;
     margin: 0 0 17px;
     color: #26364e;
     font-size: 14px;
     font-weight: 800;
 }

 .rc-password-rules h4 i {
     color: #ff5c45;
 }

 .rc-rule-item {
     display: flex;
     align-items: center;
     gap: 8px;
     margin: 0;
     color: #7b8797;
     font-size: 12px;
     transition: color .2s ease;
 }

 .rc-rule-item i {
     display: grid;
     width: 18px;
     height: 18px;
     flex: 0 0 18px;
     place-items: center;
     border-radius: 50%;
     background: #fbe7e7;
     color: #d75959;
     font-size: 8px;
     transition:
         background-color .2s ease,
         color .2s ease,
         transform .2s ease;
 }

 .rc-rule-item.valid {
     color: #238653;
 }

 .rc-rule-item.valid i {
     background: #e4f8ec;
     color: #1c9958;
     transform: scale(1.08);
 }

 .rc-form-actions {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 12px;
     margin-top: 30px;
     padding-top: 25px;
     border-top: 1px solid #edf0f4;
 }

 .rc-cancel-btn,
 .rc-submit-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     min-height: 44px;
     padding: 0 18px;
     border-radius: 9px;
     font-size: 13px;
     font-weight: 700;
     text-decoration: none;
     transition:
         transform .22s ease,
         box-shadow .22s ease,
         background-color .22s ease;
 }

 .rc-cancel-btn {
     border: 1px solid #dfe4eb;
     background: #fff;
     color: #526075;
 }

 .rc-cancel-btn:hover {
     color: #26364e;
     background: #f7f9fb;
     transform: translateY(-1px);
 }

 .rc-submit-btn {
     min-width: 175px;
     border: 1px solid #ff5c45;
     background: #ff5c45;
     color: #fff;
     cursor: pointer;
     box-shadow: 0 8px 18px rgba(255, 92, 69, .18);
 }

 .rc-submit-btn:hover {
     color: #fff;
     background: #ed4933;
     box-shadow: 0 11px 23px rgba(255, 92, 69, .26);
     transform: translateY(-2px);
 }

 .rc-submit-btn:disabled {
     cursor: not-allowed;
     opacity: .75;
     transform: none;
 }

 .rc-button-loading {
     display: none;
 }

 .rc-submit-btn.is-loading .rc-button-content {
     display: none;
 }

 .rc-submit-btn.is-loading .rc-button-loading {
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .rc-alert {
     position: relative;
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-bottom: 22px;
     padding: 14px 46px 14px 16px;
     border-radius: 10px;
     font-size: 13px;
     animation: rcAlertSlide .4s ease both;
 }

 .rc-alert-danger {
     border: 1px solid #ffc7c7;
     background: #fff2f2;
     color: #c53f3f;
 }

 .rc-alert strong {
     display: block;
     margin-bottom: 4px;
 }

 .rc-alert p {
     margin: 0 0 4px;
 }

 .rc-alert p:last-child {
     margin-bottom: 0;
 }

 .rc-alert-close {
     position: absolute;
     top: 50%;
     right: 12px;
     display: grid;
     width: 27px;
     height: 27px;
     place-items: center;
     padding: 0;
     border: 0;
     border-radius: 7px;
     background: transparent;
     color: currentColor;
     transform: translateY(-50%);
     cursor: pointer;
 }

 .rc-alert-close:hover {
     background: rgba(0, 0, 0, .05);
 }

 .rc-error,
 .rc-client-error {
     display: block;
     min-height: 16px;
     margin-top: 6px;
     color: #dc3545;
     font-size: 11px;
 }

 .rc-client-error:empty {
     min-height: 0;
     margin-top: 0;
 }

 .rc-form-shake {
     animation: rcFormShake .38s ease;
 }

 .rc-password-fade-down {
     animation: rcFadeDown .55s ease both;
 }

 .rc-password-card-animation {
     animation: rcCardUp .65s .08s ease both;
 }

 @keyframes rcFadeDown {
     from {
         opacity: 0;
         transform: translateY(-14px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes rcCardUp {
     from {
         opacity: 0;
         transform: translateY(22px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes rcShieldFloat {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-5px);
     }
 }

 @keyframes rcAlertSlide {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes rcFormShake {

     0%,
     100% {
         transform: translateX(0);
     }

     25% {
         transform: translateX(-5px);
     }

     50% {
         transform: translateX(5px);
     }

     75% {
         transform: translateX(-3px);
     }
 }

 @media (max-width: 767px) {
     .rc-password-section {
         padding: 45px 0 65px;
     }

     .rc-password-head {
         align-items: flex-start;
         flex-direction: column;
     }

     .rc-password-head h1 {
         font-size: 28px;
     }

     .rc-password-card {
         padding: 20px;
     }

     .rc-password-card-head {
         align-items: flex-start;
     }

     .rc-security-icon {
         width: 52px;
         height: 52px;
         flex-basis: 52px;
     }

     .rc-password-card-head h2 {
         font-size: 21px;
     }

     .rc-form-actions {
         align-items: stretch;
         flex-direction: column-reverse;
     }

     .rc-cancel-btn,
     .rc-submit-btn {
         width: 100%;
     }
 }

 @media (prefers-reduced-motion: reduce) {

     .rc-password-fade-down,
     .rc-password-card-animation,
     .rc-security-icon,
     .rc-alert {
         animation: none;
     }

     .rc-password-card,
     .rc-password-head>a,
     .rc-cancel-btn,
     .rc-submit-btn {
         transition: none;
     }
 }