/* RESET */
* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    margin: 0;
    background: #f3f4f6;
}

/* HEADER */
.auth-header {
    height: 64px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.auth-logo img {
    height: 34px;
}

/* TOP RIGHT BUTTON */
.auth-register-btn {
    background: #f97316;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.auth-register-btn:hover {
    background: #ea580c;
}

/* MAIN LAYOUT */
.auth-container {
    display: flex;
    height: calc(100vh - 64px);
}

/* LEFT PANEL */
.auth-left {
    width: 50%;
    color: #ffffff;
    padding: 80px;
    display: flex;
    align-items: center;
    position: relative;

    /* ORANGE GRADIENT */
    background: linear-gradient(
        135deg,
        #f97316 0%,
        #fb923c 45%,
        #ea580c 100%
    );
}

.auth-left h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.auth-left p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 420px;
    opacity: 0.95;
}

/* RIGHT PANEL */
.auth-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORM CARD */
.auth-card {
    background: #ffffff;
    width: 420px;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auth-card h1 {
    font-size: 26px;
    margin-bottom: 6px;
}

.auth-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* INPUTS */
.auth-card label {
    font-size: 13px;
    font-weight: 500;
}

.auth-card input[type="email"],
.auth-card input[type="password"] {
    width: 100%;
    height: 46px;
    padding: 10px 12px;
    margin-top: 6px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.auth-card input:focus {
    outline: none;
    border-color: #f97316;
}

/* ROW */
.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
}

.auth-row a {
    color: #f97316;
    text-decoration: none;
}

.auth-row a:hover {
    text-decoration: underline;
}

/* BUTTON */
.auth-submit {
    width: 100%;
    height: 46px;
    background: #f97316;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.auth-submit:hover {
    background: #ea580c;
}

/* MOBILE */
@media (max-width: 768px) {
    .auth-left {
        display: none;
    }

    .auth-right {
        width: 100%;
    }

    .auth-card {
        width: 100%;
        margin: 20px;
    }

    .auth-header {
        padding: 0 20px;
    }
}
