/* --- Root Variables --- */
:root {
    --primary-teal: #48C7C1;
    --primary-hover: #3bb3ad;
    --dark-blue: #1a3b5d;
    --text-gray: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    margin: 0;
}

/* --- Navbar (Consistent) --- */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    border-bottom: 1px solid #f1f5f9;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a, .log-in {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
}

.sign-up {
    background-color: var(--primary-teal);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* --- Login Card (image_101e60.png) --- */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 40px 20px;
}

.login-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.login-icon {
    width: 120px; /* Linuwagan ko konti para mas kita ang logo */
    height: auto;
    background-color: transparent; /* Ito yung kailangan mo teh */
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-icon img {
    width: 100%;
    height: auto;
    filter: none; /* Tinanggal ko yung white filter para lumabas yung orig color ng logo */
}

.login-card h2 {
    color: var(--dark-blue);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-gray);
    margin-bottom: 35px;
}

/* Form Styling */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    box-sizing: border-box;
}

.password-wrapper {
    position: relative;
}

.password-wrapper i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.remember-me {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-pass {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
}

.signin-btn {
    width: 100%;
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.signin-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.signup-footer {
    margin-top: 25px;
    color: var(--text-gray);
}

.signup-footer a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
}

.google-btn:hover {
    background-color: #f8fafc !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Optional: styling para sa divider 'OR' */
.divider hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #e2e8f0;
}