/* --- Root Variables --- */
:root {
    --primary-teal: #48C7C1;
    --primary-hover: #3bb3ad;
    --dark-blue-text: #1a3b5d;
    --text-gray: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

/* Siguraduhin na may ganito ka teh para mawala yung bullets at maging pahalang */
.nav-links {
    list-style: none; /* Tinatanggal nito yung bullet points */
    display: flex;    /* Pinapapila sila nang pahalang */
    gap: 20px;        /* Spacing sa pagitan ng links */
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none; /* Tinatanggal yung underline */
    color: var(--dark-blue-text);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-teal);
}

/* Navbar container para pantay ang logo at links */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: white;
}

/* --- Layout Structure --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    margin: 0;
    color: var(--dark-blue-text);
}

.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 60px 20px;
}

/* --- Sign Up Card --- */
.signup-card {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* --- Transparent Logo Handling --- */
.signup-logo-container {
    width: 80px; /* Sakto lang na size gaya ng image_0363a0.png */
    margin: 0 auto 20px;
}

.signup-logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Typography --- */
.signup-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark-blue-text);
}

.signup-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 35px;
}

/* --- Form Elements --- */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--dark-blue-text);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-teal);
}

/* Password Wrapper for Eye Icon */
.password-wrapper {
    position: relative;
}

.password-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5e1;
    cursor: pointer;
}

/* --- Checkbox & Terms --- */
.terms-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.terms-wrapper input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary-teal);
}

.terms-wrapper a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
}

/* --- Submit Button --- */
.create-btn {
    width: 100%;
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.create-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 199, 193, 0.3);
}

/* --- Footer --- */
.login-link-footer {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.login-link-footer a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 700;
}

/* --- Navbar Adjustments --- */
.nav-bar {
    background: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}