.navbar, footer{
    display: none !important;
}
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --hero-gradient-start: #0ea5e9;
    --hero-gradient-end: #2563eb;
}
html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f8fafc;
}

.auth-page {
    display: flex;
    padding: 2rem;
    min-height: 100vh;
    height: 100vh;
    align-items: stretch;
}
.auth-wrapper{
    display: flex;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    flex: 1;
    min-height: 100%;
}
.auth-page > .d-flex {
    flex: 1;
    min-height: 100%;
}
.auth-hero {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 45%), linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    color: #ffffff;
    border-radius: 1rem;
    width: 50%;
    height: 100%;
}
.auth-hero-inner {
    height: 100%;
    border-radius: 1rem;
}
.auth-hero-logo img {
    width: 80px;
    height: 80px;
}
.auth-hero-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}
.auth-hero-kicker {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}
.auth-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;   
    flex: 1;
    padding: 0rem 4rem;
}
.auth-form {
    width: 80%;
    height: 100%;
}

.auth-logo img{
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}
.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}
.auth-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
}
.auth-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
}
.auth-input {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
}
.auth-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
}
.auth-button {
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.auth-button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}
.auth-footer {
    font-size: 0.75rem;
    color: #9ca3af;
}
.auth-alert {
    font-size: 0.85rem;
    border-radius: 10px;
}
.auth-link {
    font-size: 0.85rem;
}

.custom-topbar{
    display: none;
}

.bottom-nav{
    display: none;
}

@media (max-width: 768px) {
    .auth-hero{
        display: none;
    }
    .auth-form-wrapper{
        justify-content: start;
        width: 100%;
        padding:0;
    }
    .auth-form{
        width: 100%;
    }
    .auth-logo{
        display: flex !important;
    }
    .auth-page {
        height: auto;
    }	
    .auth-form{
        padding-bottom: 2rem;
    }
}
