 .register-page {
     height: 100vh;
     display: flex;
     flex-direction: row;
     align-items: stretch;
     justify-content: center;
     background-color: #f1f5f9;
 }

 .register-brand {
     flex: 1;
     background: url('../image/UGG_logo.png') no-repeat center center;
     background-size: 80%;
     background-color: #0d6efd10;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .register-form-wrapper {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 2rem;
     background-color: #f8f9fa;
 }

 .register-form {
     background: white;
     border-radius: 16px;
     padding: 2.5rem 2rem;
     width: 100%;
     max-width: 460px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 .register-form h3 {
     font-weight: 700;
     text-align: center;
     margin-bottom: 1.8rem;
     color: #0d6efd;
 }

 .register-form button {
     padding: 0.6rem;
     font-size: 1rem;
 }

 .register-form .alert {
     font-size: 0.9rem;
     padding: 0.5rem 1rem;
 }

 @media (max-width: 768px) {
     .register-page {
         flex-direction: column;
     }

     .register-brand {
         height: 180px;
         background-size: 40%;
     }

     .register-form-wrapper {
         padding: 2rem 1rem;
     }
 }