@import url('homecss/montserrat.css');

:root {
    /* Light Theme Variables */
    --bg-color: #f6f5f7;
    --text-color: #333;
    --container-bg: #fff;
    --primary-color: #FF4B2B;
    --secondary-color: #FF416C;
    --overlay-text: #fff;
    --input-bg: #eee;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --input-icon-color: #888;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

[data-theme="dark"] {
    /* Dark Theme Variables */
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --container-bg: #1e1e1e;
    --primary-color: #FF4B2B;
    --secondary-color: #FF416C;
    --overlay-text: #fff;
    --input-bg: #333;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --input-icon-color: #aaa;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    margin: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

h1 {
    font-weight: bold;
    margin: 0;
    text-align: center;
}

h2 {
    text-align: center;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

span {
    font-size: 12px;
}

a {
    color: var(--text-color);
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

button {
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in, background-color 0.3s;
    cursor: pointer;
    margin-top: 10px;
}

button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
}

button.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

form {
    background-color: var(--container-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.input-group {
    position: relative;
    width: 100%;
    margin: 8px 0;
}

input {
    background-color: var(--input-bg);
    border: none;
    padding: 12px 15px 12px 40px;
    /* Adjusted payload for icon */
    width: 100%;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--input-icon-color);
    pointer-events: none;
}

.container {
    background-color: var(--container-bg);
    border-radius: 10px;
    box-shadow: 0 14px 28px var(--shadow-color),
        0 10px 10px var(--shadow-color);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
    transition: background-color 0.3s ease;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background: #FF416C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    color: var(--text-color);
    transition: border-color 0.3s;
}

[data-theme="dark"] .social-container a {
    border-color: #555;
}


/* Theme Switcher */
.theme-switch-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
    z-index: 2;
}

input:checked+.slider {
    background-color: #66bb6a;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.sun-icon,
.moon-icon {
    width: 18px;
    height: 18px;
    stroke: #f1c40f;
    z-index: 1;
}

.moon-icon {
    stroke: #f1c40f;
}

/* Mobile Responsiveness */
.mobile-toggle {
    display: none;
    margin-top: 15px;
    font-size: 14px;
}

.mobile-toggle span {
    color: var(--secondary-color);
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }

    .overlay-container {
        display: none;
    }

    .form-container {
        width: 100%;
        position: relative;
        height: auto;
        min-height: 100vh;
        transition: none;
    }

    .sign-in-container,
    .sign-up-container {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 1;
        transition: opacity 0.3s ease;
        padding-top: 60px;
        /* Space for theme toggle */
    }

    /* Manually handle specific visibility for mobile via helper classes if needed, 
       but here we reuse the layout logic. 
       Actually with the overlay hidden, we need a way to swap.
       We'll use a simpler mobile approach: just toggle visibility.
    */

    .sign-in-container {
        opacity: 1;
        z-index: 2;
    }

    .container.right-panel-active .sign-in-container {
        transform: none;
        opacity: 0;
        pointer-events: none;
    }

    .container.right-panel-active .sign-up-container {
        transform: none;
        opacity: 1;
        pointer-events: all;
        animation: none;
    }

    .mobile-toggle {
        display: block;
    }
}