/* Auth Page Styles (Signup/Signin) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --auth-bg: #ffffff;
    --auth-text-main: #000000;
    --auth-text-muted: #666666;
    --auth-input-border: #e0e0e0;
    --auth-input-focus: #000000;
    --auth-btn-bg: #000000;
    --auth-btn-text: #ffffff;
    --auth-font: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--auth-font);
    background-color: var(--auth-bg);
    color: var(--auth-text-main);
    overflow-x: hidden;
}

.auth-container {
    display: flex;
    min-height: 100vh;
}

/* Left Side - Form */
.auth-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 80px;
    max-width: 570px;
}

.navbar-nav {
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
}

.logo-text {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.auth-header {
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.auth-header p {
    color: #697178;
    font-size: 18px;
    line-height: 1.5;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--auth-text-muted);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--auth-input-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: var(--auth-input-focus);
}

.form-input::placeholder {
    color: #ccc;
}

.btn-auth {
    background-color: var(--auth-btn-bg);
    color: var(--auth-btn-text);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 10px;
}

.btn-auth:hover {
    opacity: 0.9;
}

.auth-footer {
    margin-top: 24px;
    font-size: 18px;
    color: var(--auth-text-muted);
    display: flex;
    justify-content: space-between;
}

.auth-footer a {
    color: var(--auth-text-main);
    text-decoration: none;
    font-weight: 200;
}

/* Right Side - Branding */
.auth-branding-section {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.branding-content {
    max-width: 460px;
}

/* Horizontal logo row: icon beside text */
.branding-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}

.branding-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 8px;
}

.branding-logo .logo-text {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.branding-content h2 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    color: #000000;
}

.branding-content p {
    color: #000000;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 100;
}

/* Responsive */
@media (max-width: 1024px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-form-section {
        padding: 40px 20px;
        max-width: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    .signup-form {
        width: 100%;
        max-width: 400px;
    }

    .auth-branding-section {
        display: none;
    }

    .branding-content h2 {
        font-size: 36px;
    }

    .branding-logo {
        margin-bottom: 30px;
    }

    .auth-form-section .logo-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .auth-header,
    .auth-footer {
        text-align: center;
    }

    .auth-footer {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    .auth-form-section {
        padding: 30px 20px;
    }

    .auth-header h1 {
        font-size: 30px;
    }

    .branding-content h2 {
        font-size: 28px;
    }

    .branding-content p {
        font-size: 15px;
    }
}