@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary-color: #FF3D00;
    --text-color: #1A1A1A;
    --text-secondary: #666666;
    --bg-color: #FFFFFF;
    --input-bg: #F9F9F9;
    --input-border: #E5E5E5;
}

body.modern-auth {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    height: 100vh;
    overflow: hidden;
}

.split-screen {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.split-screen .left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #3d4454;
    color: white;
}

.split-screen .right {
    flex: 1.2;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.form-container {
    width: 100%;
    max-width: 400px;
}

.form-container h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: inherit;
}

.form-container .subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: inherit;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 61, 0, 0.1);
}

.form-group .help-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.1s, background-color 0.2s;
}

.btn-primary:hover {
    background-color: #E63600;
}

.btn-primary:active {
    transform: scale(0.98);
}

.social-login {
    margin-top: 16px;
}

.btn-google {
    width: 100%;
    padding: 12px;
    background-color: white;
    border: 1px solid var(--input-border);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-google:hover {
    background-color: #F9F9F9;
}

.btn-google img {
    width: 20px;
    height: 20px;
}

.login-link {
    margin-top: 32px;
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.login-link a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Right side styles */
.testimonial {
    display: none;
}

.testimonial q {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1.3;
    color: #1A1A1A;
    display: block;
    margin-bottom: 32px;
    position: relative;
    border: none;
    padding: 0;
}

.testimonial q::before {
    content: "“";
    color: var(--primary-color);
    margin-right: 4px;
}

.testimonial q::after {
    content: "”";
    color: var(--primary-color);
    margin-left: 4px;
}

.user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user-info .name {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: #1A1A1A;
}

.user-info .title {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 4px 0 0 0;
}

.dashboard-preview-container {
    display: none;
}

.dashboard-preview {
    background: white;
    border-radius: 24px 0 0 0;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
    padding: 12px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateX(40px);
    transition: transform 0.5s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) translateX(20px);
}

.dashboard-preview img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

@media (max-width: 1024px) {
    .split-screen .right {
        display: none;
    }

    .split-screen .left {
        flex: 1;
    }
}