/* Global body styles */
body {
    background-color: #f8f9fa;
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    height: 60px;
}

/* Card wrapper for login/signup */
.card, .login-card {
    max-width: 420px;
    width: 100%;
    border-radius: 1rem;
    background-color: #fff;
}

/* Form controls inside card */
.card .form-control,
.login-card .form-control {
    border-radius: 0.5rem;
    padding: 0.75rem;
}

/* Buttons inside card */
.card button,
.login-card button {
    border-radius: 0.5rem;
    font-weight: 600;
}

/* Primary color */
.text-primary {
    color: #007bff !important;
}

a.text-primary:hover {
    text-decoration: underline;
}
