body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    background: #0d2b4c;
    color: white;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    color : #ffff ;
    font-size: 20px;
    font-weight: bold;
}

/* Nav links */
.nav-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, #0a192f, #1f4068);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* BUTTON */
.btn {
    padding: 10px 20px;
    background: #00c6a7;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* LOGIN BOX */
.login-box {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    width: 300px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.login-box h3 {
    text-align: center;
    margin-bottom: 15px;

    color: #1e4f8a;          /* brighter blue */
    font-weight: 600;
}

.login-box input {
    width: 100%;
    padding: 12px 16px;   /* 👈 adds left + right padding */
    margin: 10px 0;

    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;

    font-size: 14px;
    transition: 0.3s;

    box-sizing: border-box;  /* 🔥 important */
}

.forgot {
    text-align: center;
    margin-top: 10px;
}

.forgot a {
    color: #0d2b4c;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.forgot a:hover {
    opacity: 1;
    text-decoration: underline;
}

.login-box input:focus {
    border-color: #00c6a7;
    box-shadow: 0 0 5px rgba(0, 198, 167, 0.5);
}

/* FOOTER */
.footer {
    position: sticky;
    bottom: 0;
    background: #0d2b4c;
    color: white;
    text-align: center;
    padding: 10px;
}


.hero-logo {
    width: 380px;       /* adjust size */
    margin-bottom: 20px;
}