/* -----------------------------------------------------------
   SECloudz - Corporate Register Page
   Colors: Orange (#ff7a00) & Blue (#0b5ed7)
   Clean, modern, animated layout
----------------------------------------------------------- */

:root {
    --blue: #0b5ed7;
    --orange: #ff7a00;
    --bg: #f4f7fb;
    --gray: #6b7280;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: .25s ease;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    padding-bottom: 10px; /* space before footer */
}

/* MAIN CONTAINER */
.secard {
    width: 90%;
    max-width: 1400px;
    margin: 40px auto 40px auto; 
    min-height: 100vh;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}


/* LEFT PANEL */
.left-panel {
    width: 50%;
    background: linear-gradient(135deg, var(--blue), #3a7df4);
    color: #fff;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.15);
}

.brand {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.brand-dot {
    width: 28px;
    height: 28px;
    background: var(--orange);
    border-radius: 7px;
    margin-right: 10px;
}

.left-panel h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.left-panel p {
    font-size: 18px;
    opacity: 0.9;
}

/* FLOATING ICONS */
.float-icons {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    gap: 15px;
}

.float-icons .icon {
    background: rgba(255,255,255,0.12);
    padding: 16px;
    font-size: 26px;
    border-radius: var(--radius);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow);
    animation: float 3s infinite ease-in-out;
}

.float-icons .icon:nth-child(2) { animation-delay: .4s; }
.float-icons .icon:nth-child(3) { animation-delay: .8s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* RIGHT PANEL (REGISTRATION FORM) */
.right-panel {
    width: 50%;
    background: white;
    padding: 20px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -6px 0 35px rgba(0,0,0,0.06);
}

.right-panel h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #222;
}

/* FORM FIELDS */
.auth-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: var(--radius);
    border: 1px solid #d1d5db;
    font-size: 16px;
    transition: border .3s;
}

.auth-form input:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(11,94,215,0.15);
}

/* SUBMIT BUTTON */
.btn-cta {
    padding: 14px;
    border: none;
    width: 100%;
    background: linear-gradient(90deg, var(--orange), #ff9f47);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: opacity .25s;
}

.btn-cta:hover {
    opacity: .9;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.4);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: .25s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.social-icon {
    width: 18px;
    height: 18px;
}

/* COLORS */
.google { border-color: #DB4437; }
.facebook { border-color: #1877F2; }
.linkedin { border-color: #0A66C2; }


.sbtn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: white;
    transition: var(--transition);
}

.google { background: #DB4437; }
.fb     { background: #1877F2; }
.li     { background: #0A66C2; }

.sbtn:hover {
    filter: brightness(1.1);
}

/* ALREADY REGISTERED TEXT */
.muted {
    margin-top: 20px;
    font-size: 15px;
    color: var(--gray);
}

.muted a {
    color: var(--blue);
    text-decoration: none;
}

.muted a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width: 1000px) {
    .secard {
        flex-direction: column;
        height: auto;
    }
    .left-panel, .right-panel {
        width: 100%;
        padding: 50px 30px;
        height: auto;
    }
    .left-panel h1 {
        font-size: 34px;
    }
}


/* ------------------------------
   PRESS & HOLD CAPTCHA
------------------------------ */

.human-check {
    margin: 15px 0 25px;
}

.hc-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f0f3f8;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #dce2eb;
}

.hc-icon {
    font-size: 32px;
}

.hc-text {
    font-size: 16px;
    color: #444;
}

.hold-btn {
    position: relative;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #e8eef7;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
}

#holdProgress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    width: 0%;
    transition: width 0.1s;
}

.hold-btn.verified {
    background: #c8f7d1 !important;
    color: #0a9e2d !important;
}

/* PRESS & HOLD CAPTCHA */
.human-check { margin:15px 0 25px; }
.hc-box { display:flex; align-items:center; gap:12px; padding:14px; background:#f0f3f8; border-radius:12px; border:1px solid #dce2eb; margin-bottom:10px; }
.hc-icon { font-size:32px; }
.hc-text { font-size:16px; color:#444; }
.hold-btn { position:relative; width:100%; padding:14px; border-radius:12px; border:none; background:#e8eef7; font-size:16px; font-weight:600; cursor:pointer; overflow:hidden; }
#holdProgress { position:absolute; bottom:0; left:0; height:4px; background:linear-gradient(90deg,#0b5ed7,#ff7a00); width:0%; transition:width .1s; }
.hold-btn.verified { background:#c8f7d1; color:#0a9e2d; }


.sc-footer {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: var(--gray);
    background: #eef2f7;
    border-top: 1px solid #dbe1e8;
    margin-top: 10px;
}

.brand-logo {
    height: 100px;     
    width: auto;      
    
}

.logo-right {
    position: absolute;
    top: 20px;
    right: 20px;
}

right-panel {
    width: 50%;
    background: white;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -6px 0 35px rgba(0,0,0,0.06);
    position: relative; /* ADD THIS */
}

.brand-link {
    
    text-decoration: none;
    
}