/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

body {
    background-color: #fff;
}

/* ---------------- Navbar ---------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0056d2;
    padding: 15px 20px;
    color: white;
}

.navbar-left .logo {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
}

.navbar a:hover {
    text-decoration: underline;
}

.divider {
    margin: 0 5px;
}

/* ---------------- Create Account Section ---------------- */
.container {
    text-align: center;
    padding: 40px;
}

.container h1 {
    font-size: 28px;
    margin-bottom: 30px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    width: 300px;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.icon {
    background-color: #8c4eff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.icon img {
    width: 40px;
    height: 40px;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn {
    background-color: #0056d2;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn:hover {
    background-color: #0041a8;
}

/* ---------------- Responsive Design ---------------- */
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-right {
        margin-top: 10px;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Heading font — Poppins for visual hierarchy against Inter body text */
h1, h2, h3, .logo, .brand, .gate-box h2 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}
