/* -----------------------------------------------------------
   SECloudz - Corporate Login Page (Matches Register Page)
   Orange + Blue theme, modern UI, floating icons, consistent layout
----------------------------------------------------------- */

:root {
    --blue: #0b5ed7;
    --blue2: #1a73e8;
    --orange: #ff7a00;
    --bg: #f4f7fb;
    --gray: #6b7280;
    --radius: 14px;
    --shadow: 0 12px 30px rgba(0,0,0,0.08);
    --transition: .25s ease;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    font-family: "Inter", Arial, sans-serif;
}

.card {
    width: 100%;
    max-width: 1100px;
    height: 650px;
    margin: auto;
    margin-top: 40px;
    background: white;
    border-radius: var(--radius);
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* LEFT SECTION — SAME STYLE AS REGISTER PAGE */
.left-panel {
    width: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    padding: 70px 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.brand-dot {
    height: 28px;
    width: 28px;
    background: var(--orange);
    border-radius: 6px;
}

.left-panel h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.left-panel p {
    font-size: 18px;
    opacity: .95;
    line-height: 1.6;
    max-width: 350px;
}

/* FLOATING ICONS */
.float-icons {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    gap: 16px;
}

.icon {
    background: rgba(255,255,255,0.12);
    padding: 16px;
    font-size: 28px;
    border-radius: var(--radius);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow);
    animation: float 3s infinite ease-in-out;
}

.icon:nth-child(2) { animation-delay: .3s; }
.icon:nth-child(3) { animation-delay: .6s; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-12px); }
}

/* RIGHT LOGIN SECTION */
.right {
    width: 50%;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right h2 {
    font-size: 30px;
    margin-bottom: 6px;
}

.small {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 18px;
}

.input {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid #d1d5db;
    margin-bottom: 12px;
    font-size: 16px;
    transition: all .2s;
}

.input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11,94,215,0.15);
    outline: none;
}

.btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius);
    background: linear-gradient(90deg, var(--orange), #ff9f47);
    border: none;
    color: white;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.btn:hover {
    opacity: .9;
}

/* SOCIAL LOGIN */
.socials {
    margin-top: 14px;
    display: flex;
    gap: 12px;
}

.sbtn {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid #d1d5db;
    text-align: center;
    background: white;
    color: #333;
    font-size: 15px;
    transition: var(--transition);
}

.sbtn:hover {
    background: #f3f4f6;
}

.note {
    margin-top: 18px;
    color: var(--gray);
    font-size: 14px;
}

.note a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.note a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width: 960px) {
    .card {
        flex-direction: column;
        height: auto;
        max-width: 90%;
    }
    .left-panel, .right {
        width: 100%;
        padding: 40px;
    }
    .float-icons {
        position: static;
        margin-top: 20px;
    }
}
