/* assets/css/public.css */
.public-body {
    background: linear-gradient(rgba(243, 244, 246, 0.90), rgba(243, 244, 246, 0.95)), url('../images/landscape-bg-1.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.public-navbar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.public-navbar-brand img {
    height: 40px;
    max-width: auto;
}

.public-navbar-nav a {
    text-decoration: none;
    color: var(--vp-text-main);
    font-weight: 500;
    margin-left: 2rem;
    transition: color 0.2s;
}

.public-navbar-nav a:hover {
    color: var(--vp-primary);
}

.btn-nav-primary {
    background-color: var(--vp-primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--vp-border-radius);
}
.btn-nav-primary:hover {
    background-color: var(--vp-primary-hover);
    color: white !important;
}

.public-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.public-footer {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--vp-text-muted);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
}

.auth-split-card {
    display: flex;
    /* flex-direction: column; */
    flex-direction: row;
    /* background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
    border-radius: 12px;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

/* @media (min-width: 768px) {
    .auth-split-card {
        flex-direction: row;
    }
} */

.auth-side-message {
    background: linear-gradient(135deg, var(--vp-primary), #0dcaf0);
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 2rem;
    text-align: center;
}

.auth-side-form {
    max-width: 500px;
    flex: 1;
    padding: 2rem;
    background: rgba(255,255,255,0.9);
}

.landing-hero {
    max-width: 900px;
    text-align: center;
    margin: 4rem auto;
}

.landing-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--vp-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-hero p {
    font-size: 1.3rem;
    color: var(--vp-text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.landing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    width: 100%;
}

.feature-icon {
    font-size: 3rem;
    color: var(--vp-primary);
    margin-bottom: 1.5rem;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-actions .vp-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
}

.hero-btn-primary {
    margin-right: 1rem;
}

.hero-btn-secondary {
    border: 1px solid var(--vp-primary);
    color: var(--vp-primary);
    background: transparent;
}
.hero-btn-secondary:hover {
    background: rgba(13, 110, 253, 0.05);
    color: var(--vp-primary);
}

.feature-title {
    margin-top: 0;
}

.feature-desc {
    color: var(--vp-text-muted);
    margin-top: 1rem;
}

.auth-forgot-pwd {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: var(--vp-primary);
    text-decoration: none;
}
.auth-forgot-pwd:hover {
    text-decoration: underline;
}
