:root {
    --color-sidebar: #f8dfb4;        /* Solid left color */
    --color-middle: rgba(251, 230, 196, 0.6); /* Middle frosted color */
    --text-dark: #3b2014;            /* Dark brown */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #e0c9a6; 
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-wrapper {
    width: 95vw;
    height: 90vh;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

/* SWIPING BACKGROUNDS */
.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: right center; 
    background-color: #d8c3a5;
    animation: bgSwipe 12s infinite ease-in-out;
}

.slide-1 {
    background-image: url('https://i.pinimg.com/736x/e8/5b/d3/e85bd36bfd56671e77529f8671236683.jpg'); 
}

.slide-2 {
    background-image: url('https://i.pinimg.com/1200x/f5/05/69/f50569591ceb345fbfa3e249bd09b1a1.jpg'); 
    animation-delay: 4s;
    opacity: 0;
}

@keyframes bgSwipe {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

/* OVERLAY LAYERS */
.sidebar-solid {
    position: absolute;
    left: 0;
    width: 250px;
    height: 100%;
    background: var(--color-sidebar);
    z-index: 5;
}

.text-overlay {
    position: absolute;
    left: 250px;
    width: 350px;
    height: 100%;
    background: var(--color-middle);
    backdrop-filter: blur(10px);
    z-index: 4;
}

/* TOP BAR (LOGO, USER, MENU) */
.top-bar {
    position: absolute;
    top: 40px;
    left: 40px; 
    right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 30;
}

.logo {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.user {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.username { 
    color: var(--text-dark); 
    font-weight: 800; 
    font-size: 0.9rem; 
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    margin-bottom: 5px;
}

/* LOGIN CARD POSITIONING */
.main-content {
    position: absolute;
    top: 50%;
    left: 70px; 
    transform: translateY(-50%);
    z-index: 25;
}

.login-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    width: 420px;
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-card h2 {
    font-size: 1.7rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 35px;
}

/* INPUTS & BUTTON */
.input-container {
    background: white;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-align: left;
}

.icon { margin-right: 15px; font-size: 1.1rem; color: #999; }

.input-data label {
    display: block;
    font-size: 0.6rem;
    font-weight: 900;
    color: #444;
    letter-spacing: 0.5px;
}

.input-data input {
    border: none;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
}

.btn-login {
    width: 100%;
    background: #e6ceaa;
    color: var(--text-dark);
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover { background: #dfc194; }

.card-footer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.forgot-pwd { text-decoration: none; color: #777; font-size: 0.8rem; }

.register-link {
    text-decoration: none;
    color: #b5836d;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* FORCES SIDE-BY-SIDE ALIGNMENT */
.logo-flex-container {
    display: flex !important;
    flex-direction: row !important; /* Force horizontal */
    align-items: center !important;  /* Center vertically */
    justify-content: flex-start !important;
    gap: 12px !important; 
    width: auto !important;
}

.logo-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex !important; /* Internal flex for SVG */
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0; /* Prevents icon from getting squashed */
}

.logo-label {
    display: inline-block !important; /* Ensures it stays on the same line */
    font-size: 0.95rem;
    font-weight: 800;
    color: #3b2014; /* Your dark brown */
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap; /* Prevents breaking to next line */
    margin: 0 !important;
    line-height: 1 !important;
}

.top-bar {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

/* Clear any old rules that might be breaking it */
.logo-icon, .logo-label {
    float: none !important;
    clear: none !important;
}


/* Container for the logo image */
.logo-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    overflow: hidden; /* Ensures the image stays inside the circle */
}

/* Specific styling for your paw image */
.paw-logo-img {
    width: 28px;  /* Adjust this to make the paw look bigger or smaller */
    height: auto;
    object-fit: contain;
}

.logo-label {
    display: inline-block !important;
    font-size: 1rem; /* Slightly bigger to match the image weight */
    font-weight: 800;
    color: #3b2014;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0; /* Keeps the circle from squashing */
    overflow: hidden;
}

.paw-logo-img {
    width: 30px; /* Adjust size of the paw */
    height: 30px;
    object-fit: contain; /* Keeps the paw from stretching */
    display: block;
}

.logo-label {
    font-size: 1rem;
    font-weight: 800;
    color: #3b2014;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap; /* Forces text to stay beside the image */
}


