:root {
    --bg-dark: #0A0D14;
    --text-main: #FFFFFF;
    --accent-blue: #0071CE;
    --accent-hover: #00569D;
    --font-stack: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-stack);
}

body {
    background-color: #FFFFFF; /* Pure white base for auth */
    color: #111;
}

/* --- ISOLATED BRAND HEADER --- */
.auth-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    z-index: 10;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo {
    font-size: 26px;
    font-weight: 200;
    color: var(--accent-blue);
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 700;
}

/* --- AUTHENTICATION LAYOUT --- */
.auth-container {
    display: flex;
    min-height: 100vh; /* Takes full screen height */
    align-items: stretch;
}

/* Left Side: Form */
.auth-left {
    flex: 1;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center; /* Centers vertically */
    padding: 100px 5% 40px; /* Top padding clears the absolute logo */
}

.auth-form-wrapper {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.auth-form-wrapper h1 {
    font-size: 34px;
    font-weight: 300;
    color: #111;
    margin-bottom: 40px;
    text-align: center;
}

/* --- BUTTONS & INPUTS --- */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 40px;
}

.btn-google img { width: 18px; }
.btn-google:hover { background-color: #f9f9f9; }

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    width: 100%;
    padding: 18px 15px;
    border: 1px solid #777;
    border-radius: 3px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.auth-form input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 113, 206, 0.2);
}

.auth-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 14px;
}
.auth-link:hover { text-decoration: underline; }

.center-align {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.btn-continue {
    background-color: var(--accent-blue);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.btn-continue:hover { background-color: var(--accent-hover); }

.auth-footer-links {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.help-link {
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.meta-label {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* --- RIGHT SIDE: BENEFITS --- */
.auth-right {
    flex: 1;
    background-color: #F4F4F4; /* Dell Gray */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 5% 40px;
}

.auth-benefits-wrapper {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.auth-benefits-wrapper h2 {
    font-size: 32px;
    font-weight: 300;
    color: #111;
    margin-bottom: 10px;
}

.benefits-sub {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.benefits-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    align-items: flex-start;
}

.benefit-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item i {
    font-size: 36px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.benefit-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .auth-container { flex-direction: column; }
    .auth-left, .auth-right { padding: 120px 20px 60px; min-height: auto; }
    .benefits-row { flex-direction: column; gap: 40px; }
}