/* =========================================================
   AUTH SECTION
========================================================= */
.auth-section {
   overflow: hidden;
   padding-top: 150px;
}

.auth-wrapper {
   display: grid;
   grid-template-columns: 1fr 520px;
   gap: 80px;
   align-items: center;
}

.auth-content {
   max-width: 600px;
}

.auth-content p {
   color: var(--text-muted);
   font-size: 16px;
   line-height: 1.8;
}

/* BENEFITS */
.auth-benefits {
   display: flex;
   flex-direction: column;
   gap: 18px;
}

.benefit-item {
   display: flex;
   align-items: center;
   gap: 12px;
   color: var(--text);
   font-weight: 500;
}

.benefit-item i {
   color: var(--primary);
   font-size: 18px;
}

/* AUTH CARD */
.auth-card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   padding: 40px;
   box-shadow: var(--shadow-md);
}

.auth-card-header {
   margin-bottom: 30px;
}

.auth-card-header h3 {
   color: var(--heading);
   margin-bottom: 8px;
}

.auth-card-header p {
   color: var(--text-muted);
   margin: 0;
}

/* INPUT */
.auth-form-control {
   height: 56px;
   border-radius: 12px;
   background: var(--bg-light);
   border: 1px solid var(--border);
   color: var(--heading);
}

.auth-form-control::placeholder {
   color: var(--text-muted);
}

.auth-form-control:focus {
   border-color: var(--primary);
   box-shadow: 0 0 0 3px var(--primary-soft);
}

/* BUTTON */
.auth-btn {
   width: 100%;
   height: 56px;
   background: var(--primary);
   color: var(--white);
   border: none;
   border-radius: 30px;
   margin-top: 10px;
   transition: var(--transition);
}

.auth-btn:hover {
   background: var(--primary-dark);
}

/* FOOTER */
.auth-footer {
   text-align: center;
   margin-top: 10px;
}

.auth-footer a {
   color: var(--primary);
   font-weight: 600;
   margin-left: 5px;
}

/* RESPONSIVE */
@media(max-width:991px) {
   .auth-wrapper {
      grid-template-columns: 1fr;
      gap: 50px;
   }

   .auth-content {
      max-width: 100%;
      text-align: center;
   }

   .auth-benefits {
      align-items: center;
   }

   .auth-card {
      padding: 30px;
   }
}

@media(max-width:575px) {
   .auth-card {
      padding: 24px;
   }
}