body {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh;
    margin: 0; */
    margin: 0;
    min-height: 100vh;

    background-image: url("/static/images/login.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
}

/* Top Navigation Bar */
.top-nav {
    width: 100%;
    background-color: #1e3a8a; /* dark blue */
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-list {
    margin-top: 15px;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.policy-list {
    margin-top: 10px;
    padding-left: 20px;
}

.policy-list li {
    margin-bottom: 8px;
}

.page-container {
    width: 90%;
    max-width: 900px;
    margin: 120px auto;
    padding: 40px;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);

    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
}

.nav-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Push content below fixed navbar */
body {
    padding-top: 60px;
}

.container {
    /* height: 50vh;
    width: 25vw; */
    display: flex;
    /* padding-block: 2rem; */
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid #47616c; */
    /* border-radius: 12px; */
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .img-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
} */

.img {
    width: 100%;
}

h1 {
    font-size: 80%;
}

.login-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.google-btn {
    display: flex;
    align-items: center;
    background-color: #47616c;
    color: white;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 0px 3px 10px -2px rgba(0,0,0,0.15);
    overflow: hidden;
    padding-inline: 8px;
    text-decoration: none;
}

.google-icon {
    background: url('https://upload.wikimedia.org/wikipedia/commons/archive/c/c1/20190923152039%21Google_%22G%22_logo.svg');
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 30px;
    background-repeat: no-repeat;
}

/* .facebook-btn {
    display: flex;
    align-items: center;
    background-color: #0239a0b9;
    color: white;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 0px 3px 10px -2px rgba(0,0,0,0.15);
    overflow: hidden;
    padding-inline: 8px;
    text-decoration: none;
}

.facebook-icon {
    background: url('../icons/facebook_logo.png') no-repeat center center;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 30px;
} */

.btn-text {
    margin-left: 10px;
    align-items: center;
}