body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

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

.left-section {
    flex: 1;
    background: #f5f5f0;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.left-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    height: 30px;
    width: auto;
    object-fit: contain;
    margin: 0 30px;
}

.left-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

.left-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.stars {
    color: #000;
    font-size: 1rem;
}

.rating span {
    color: #666;
    font-size: 0.9rem;
}

.cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.image-card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card {
    flex: 1;
    background: #000;
    color: white;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
}

.testimonial-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.testimonial-card h3 em {
    font-style: italic;
    font-weight: 400;
}

.testimonial-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-card .btn-stories {
    background: white;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.testimonial-card .btn-stories:hover {
    background: #f0f0f0;
}

.right-section {
    flex: 1;
    background: white;
    padding: 60px;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 450px;
}

.form-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.form-container .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    outline: none;
}

.btn-login {
    background: #000;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    cursor: pointer;
}

.btn-login:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.register-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.register-link a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    text-decoration: underline;
}

.alert {
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-danger {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert-info {
    background-color: #e7f3ff;
    border: 1px solid #b3d9ff;
    color: #004085;
}

.alert h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.alert p {
    margin: 4px 0;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    body {
        overflow-y: auto;
        height: auto;
    }

    .split-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .left-section {
        padding: 40px 24px;
        min-height: auto;
        justify-content: flex-start;
    }

    .left-logo {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 0 24px 0;
        height: 36px;
    }

    .left-section h1 {
        font-size: 1.8rem;
    }

    .left-section p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .rating {
        margin-bottom: 24px;
    }

    .cards-container {
        flex-direction: row;
        gap: 12px;
    }

    .image-card {
        height: 180px;
    }

    .testimonial-card {
        height: 180px;
        padding: 20px;
    }

    .testimonial-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .testimonial-card p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .right-section {
        padding: 40px 24px;
        min-height: auto;
        align-items: flex-start;
    }

    .mobile-topbar {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .left-section {
        padding: 28px 20px;
    }

    .left-section h1 {
        font-size: 1.5rem;
    }

    .cards-container {
        flex-direction: column;
    }

    .image-card,
    .testimonial-card {
        height: 160px;
    }

    .right-section {
        padding: 28px 20px;
    }
}

@media (min-width: 993px) {
    .mobile-topbar {
        display: none !important;
    }
}
