/* =========================
   SMARTDOCS V2 REGISTER
   PREMIUM SAAS UI
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #0a1d56 0%,
        #1f4ed8 50%,
        #3b82f6 100%
    );
    overflow-x: hidden;
}

/* =========================
   MAIN WRAPPER
========================= */

.register-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    width: 65%;
    min-height: 850px;
    position: relative;

    background: linear-gradient(
        135deg,
        #112868,
        #2344b7,
        #3066ff
    );

    border-radius: 30px 0 0 30px;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 80px;
}

/* Animated Circle 1 */

.hero-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    top: -250px;
    right: -200px;

    animation: float1 10s ease-in-out infinite;
}

/* Animated Circle 2 */

.hero-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255,255,255,0.06);

    bottom: -120px;
    left: -100px;

    animation: float2 8s ease-in-out infinite;
}

@keyframes float1 {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }

}

@keyframes float2 {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }

}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
}

.hero-logo {
    width: 90px;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 78px;
    font-weight: 800;
    margin-bottom: 15px;
}

.tagline {
    font-size: 24px;
    opacity: 0.95;
    margin-bottom: 40px;
}

.hero-line {
    width: 120px;
    height: 6px;
    background: white;
    border-radius: 50px;
    margin-bottom: 50px;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 22px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    font-size: 20px;
    font-weight: 500;
}

/* =========================
   FORM SECTION
========================= */

.form-section {
    width: 35%;
    min-height: 850px;

    background: rgba(255,255,255,0.95);

    backdrop-filter: blur(15px);

    border-radius: 0 30px 30px 0;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px;
}

/* =========================
   REGISTER CARD
========================= */

.register-card {

    width: 100%;
    max-width: 460px;

    background: rgba(255,255,255,0.90);

    backdrop-filter: blur(20px);

    border-radius: 25px;

    padding: 45px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08);
}

.form-logo {
    width: 90px;
    display: block;
    margin: auto;
    margin-bottom: 25px;
}

.register-card h2{
    font-size: 42px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    color: #64748b;
    font-size: 20px;
    margin-bottom: 35px;
}

/* =========================
   FORM
========================= */

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

input {
    height: 60px;

    border: 1px solid #dbe3ee;

    border-radius: 14px;

    padding: 0 20px;

    font-size: 16px;

    transition: 0.3s;
}

input:focus {
    outline: none;

    border-color: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37,99,235,0.15);
}

button {
    height: 60px;

    border: none;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color: white;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(37,99,235,0.35);
}

/* =========================
   LINKS
========================= */

.login-link {
    text-align: center;
    margin-top: 25px;
    color: #64748b;
}

.login-link a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.terms-text {
    text-align: center;

    margin-top: 20px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.7;
}

.terms-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.footer-links {
    text-align: center;
    margin-top: 25px;
}

.footer-links a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.version {
    text-align: center;
    margin-top: 25px;
    color: #94a3b8;
    font-size: 14px;
}

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

@media (max-width: 1200px) {

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

}

@media (max-width: 992px) {

    .register-wrapper {
        padding: 20px;
    }

    .hero-section {
        display: none;
    }

    .form-section {
        width: 100%;
        border-radius: 25px;
        min-height: auto;
    }

}

@media (max-width: 576px) {

    .register-card {
        padding: 30px;
    }

    .register-card h2 {
        font-size: 38px;
    }

    .subtitle {
        font-size: 16px;
    }

    input,
    button {
        height: 55px;
    }

}
/* Professional Home button on Business Registration */
.sd-register-home{
  position:fixed;
  top:28px;
  left:32px;
  z-index:1000;
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:10px 17px;
  border:1px solid #dfe5ef;
  border-radius:10px;
  background:rgba(255,255,255,.97);
  color:#18243b;
  font-size:13px;
  font-weight:750;
  text-decoration:none;
  box-shadow:0 6px 20px rgba(16,24,40,.07);
  transition:all .2s ease;
}
.sd-register-home span{
  font-size:17px;
  line-height:1;
  color:#2f62e8;
}
.sd-register-home:hover{
  color:#2f62e8;
  border-color:#b9c9f8;
  transform:translateY(-1px);
  box-shadow:0 9px 24px rgba(47,98,232,.13);
}
@media(max-width:650px){
  .sd-register-home{
    top:14px;
    left:14px;
    padding:8px 12px;
    font-size:12px;
  }
}
