:root {
    --orange: #000000;
    --orange-dark: #e65a00
}

body {
    background: #f6f8fb;
    margin: 0;
    padding: 0
}

.clc-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px
}

.clc-card {
    width: 1000px;
    max-width: 95%;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
    background: #fff
}

.clc-left {
    flex: 1;
    background: linear-gradient(180deg, var(--orange) 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px
}

.clc-left-inner {
    width: 260px;
    height: 420px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.clc-illus {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.clc-right {
    flex: 1;
    padding: 60px 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.clc-form-wrap {
    width: 320px
}

.clc-logo {
    max-height: 48px;
    margin-bottom: 18px;
    display: block
}

.clc-heading {
    font-size: 22px;
    margin: 0 0 6px 0;
    font-weight: 600
}

.clc-desc {
    color: #6b7280;
    margin-bottom: 18px
}

.clc-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6eef8;
    border-radius: 6px;
    margin-bottom: 12px
}

.clc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563
}

.clc-btn {
    display: block;
    width: 100%;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    margin-top: 6px
}

.clc-or {
    margin-top: 12px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 8px
}

.clc-google-btn {
    display: block;
    text-align: center;
    border: 1px solid #e6eef8;
    padding: 10px;
    border-radius: 8px;
    color: #111;
    text-decoration: none
}

@media(max-width:900px) {
    .clc-card {
        flex-direction: column
    }

    .clc-left {
        padding: 24px
    }

    .clc-right {
        padding: 24px
    }

    .clc-left-inner {
        width: 200px;
        height: 320px
    }
}