 .auth-wrapper {
     min-height: 90vh;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #f5f5f5;
     padding: 20px;
 }

 .auth-card {
     width: 100%;
     max-width: 450px;
     background: #fff;
     padding: 30px;
     border-radius: 16px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
 }

 .auth-card h4 {
     text-align: center;
     font-weight: 500;
     color: #222;
     margin-bottom: 25px;
 }

 .auth-card label {
     display: block;
     margin-bottom: 10px;
 }

 .auth-card label span {
     display: block;
     margin-bottom: 3px;
     color: #333;
     font-size: 14px;
 }

 .auth-card input {
     width: 100%;
     padding: 10px 15px;
     border: 1px solid #ddd;
     border-radius: 10px;
     background: #fafafa;
     outline: none;
     transition: .3s;
 }

 .auth-card input:focus {
     border-color: #1B9FCB;
     background: #fff;
     box-shadow: 0 0 0 3px rgba(27, 159, 203, .15);
 }

 .text-danger {
     color: #dc3545;
     font-size: 12px;
     margin-top: 5px;
     display: block;
 }

 .btn-primary {
     width: 100%;
     border: none;
     padding: 12px;
     border-radius: 10px;
     color: #fff;
     font-weight: 600;
     background: linear-gradient(135deg, #1B9FCB 0%, #054785 100%);
     cursor: pointer;
     transition: .3s;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(27, 159, 203, .35);
 }

 .divider {
     text-align: center;
     margin: 20px 0;
     position: relative;
 }

 .divider::before {
     content: "";
     position: absolute;
     top: 50%;
     left: 0;
     width: 100%;
     height: 1px;
     background: #e5e5e5;
 }

 .divider span {
     position: relative;
     background: #fff;
     padding: 0 15px;
     color: #777;
     font-size: 14px;
 }

 .social-btn {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 10px;
     text-decoration: none;
     color: #000000;
     font-weight: 400;
     transition: 0.3s;
     margin-bottom: 10px;
     background: #fff;
 }

 .social-btn:hover {
     background: #f8f9fa;
     border-color: #1B9FCB;
     color: #054785;
 }

 .social-btn img {
     width: 22px;
     height: 22px;
 }

 .auth-footer {
     text-align: center;
     margin-top: 20px;
     font-size: 14px;
 }

 .auth-footer a {
     color: #054785;
     text-decoration: none;
     font-weight: 600;
 }