  .SUbody {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: radial-gradient(circle at center,  #e6d5b8 0%, #bc9879 100%);
        padding: 20px;
      }

  .SUcontainer {
        max-width: 1100px;
        margin: 10px auto;
        padding: 30px;
        background: none;
        border-radius: 30px;
      }

/* Navbar */
.SUnavbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  border-radius: 12px;
  background: #a7866a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.SUnavbar .SUlogo {
  font-size: 26px;
  font-weight: 700;
  color: #4d2e14;
  font-family: "Poppins", sans-serif;
}

.SUhome-btn {
  background: #ffcc5c;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #4d2e14;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.SUhome-btn:hover {
  background: #e6b84f;
}

.SUhome-btn a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #4d2e14;
}

.SUlogo img{
  height: 50px;
  width: 50px;
  border-radius: 50px;
  margin-right: 20px;
}

.SUlogo p{
  padding-left: 15px;
}
/* Content Layout */
.SUcontent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
}

.SUsignup-card{
width: 400px;
border-radius: 30px;
background: rgba(111, 79, 55, 0.85);
box-shadow: 5px 2px 8px rgba(0, 0, 0, 0.1);
padding: 30px;
}

.SUsignup-card h2{
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.SUsignup-card label {
  display: block;
  margin: 10px 0 5px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: #f1e0c6;
}

.SUsignup-card input {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: none;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  background: #d9d9d9;
  color: #6f4f37;
  padding-left: 12px;
}

.reqText{
width: 300px;
height: auto;
margin: 17px;
font-size: 14px;
} 

.SUsignup-card li{
width: 300px;
height: auto;
flex-shrink: 0;
margin: 10px auto;
font-size: 14px;
}

.SUsignup-btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: #292929;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #F1E0C6;
}

.SUsignup-note {
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.SUsignup-note a {
color: #ffcc5c;
text-decoration: none;
font-weight: bold;
}

  .SUsignup-note a:hover {
    color: #e6b84f;
  }

  .toLogin {
    color: #ffcc5c;
    text-decoration: none;
    font-weight: bold;
  }

  .toLogin:hover {
    color: #e6b84f;
  }


.SUsignup-card p {
text-align: center;
font-family: Poppins;
margin-top: 20px;
}

.SUsignup-card a {
color: #ffcc5c;
text-decoration: none;
font-weight: bold;
}
/* Coffee Art */
.SUcapital{
display: flex;
height: 120px;
flex-direction: column;
justify-content: center;
align-items: center;
flex-shrink: 0;
color: #dabda7;
text-align: center;
text-shadow: 7px 3px 5.8px rgba(181, 119, 26, 0.53);
font-family: Poppins;
font-size: 128px;
font-style: italic;
line-height: 80px; /* 62.5% */
letter-spacing: -5px;
initial-letter-align: 10px;
}

.SUcursive {
display: flex;
height: 83px;
flex-direction:row;
justify-content: center;
align-items: center;
flex-shrink: 10;
color: #FFF;
text-align: center;
text-shadow: 7px 3px 5.8px rgba(181, 119, 26, 0.73);
font-family: Allura;
font-style: oblique;
font-size: 96px;
font-weight: 400;
line-height: 80px; /* 83.333% */
letter-spacing: -5px;
}

  .SUlogin-element {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 550px;
    height: 550px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(170deg, #CCBDA7 10%, #876D59 33.1%, #442E1D 100%);
    box-shadow: 0px 4px 6.9px 0px rgba(0, 0, 0, 0.25), -15px 32px 30.4px 0px rgba(0, 0, 0, 0.3);
    margin-left: 50px;  
  }

  .SUsignup-element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

/* ========= RESPONSIVE DESIGN ========= */

/* Tablets */
@media (max-width: 1024px) {
  .SUcontainer {
    width: 90%;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.5s ease;
  }

  .SUnavbar .SUlogo {
    font-size: 20px;
    transition: all 0.5s ease;
  }

  .SUhome-btn {
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.5s ease;
  }

  .SUcontent {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transition: all 0.5s ease;
  }

  .SUsignup-card {
    width: 90%;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.5s ease;
  }

  .SUsignup-card h2 {
    font-size: 28px;
    transition: all 0.5s ease;
  }

  .SUsignup-card input {
    width: 100%;
    height: 45px;
    font-size: 14px;
    transition: all 0.5s ease;
  }

  .SUsignup-btn {
    width: 100%;
    height: 45px;
    transition: all 0.5s ease;
  }

  .SUsignup-btn p {
    font-size: 16px;
    transition: all 0.5s ease;
  }

  .SUlogin-element {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .SUsignup-card h2 {
    font-size: 22px;
  }

  .SUsignup-card input {
    font-size: 12px;
    height: 40px;
  }

  .SUsignup-btn p {
    font-size: 14px;
  }

  .SUlogin-element{
    display: none;
  }

  .SUlogo p{
    display: none;
  }
}

/* OTP Modal Styles */
.otp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.otp-modal {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: otpModalSlideIn 0.3s ease-out;
}

@keyframes otpModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.otp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #a47845 0%, #8b6f3a 100%);
    border-radius: 20px 20px 0 0;
    color: white;
}

.otp-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.otp-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.otp-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.otp-modal-content {
    padding: 30px;
    text-align: center;
}

.otp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a47845 0%, #8b6f3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.otp-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.5;
}

.otp-email {
    font-size: 18px;
    font-weight: 600;
    color: #a47845;
    margin-bottom: 30px;
    word-break: break-all;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.otp-input {
    width: 50px;
    height: 50px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #a47845;
    background: white;
    box-shadow: 0 0 0 3px rgba(164, 120, 69, 0.1);
    transform: scale(1.05);
}

.otp-input:valid {
    border-color: #10b981;
    background: #f0fdf4;
}

.otp-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #fecaca;
}

.otp-success {
    background: #f0fdf4;
    color: #059669;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #bbf7d0;
}

.otp-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.otp-verify-btn {
    background: linear-gradient(135deg, #a47845 0%, #8b6f3a 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(164, 120, 69, 0.3);
}

.otp-verify-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(164, 120, 69, 0.4);
}

.otp-verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(164, 120, 69, 0.3);
}

.otp-resend-btn {
    background: transparent;
    color: #a47845;
    border: 2px solid #a47845;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.otp-resend-btn:hover:not(:disabled) {
    background: #a47845;
    color: white;
    transform: translateY(-1px);
}

.otp-resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.otp-help {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .otp-modal {
        width: 95%;
        margin: 20px;
    }
    
    .otp-modal-header {
        padding: 20px 25px 15px;
    }
    
    .otp-modal-content {
        padding: 25px 20px;
    }
    
    .otp-input-container {
        gap: 8px;
    }
    
    .otp-input {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .otp-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

