body {
    /* background-color: #0076BC; */
    color: white;
}
.container {
    max-width: 400px;
    margin: auto;
    padding-top: 50px;
}
.logo {
    width: 100px;
    display: block;
    margin: 0 auto 20px;
}
.btn-primary {
    background-color: #0076BC;
    border: none;
    font-weight: bold;
}
.btn-primary:hover {
    background-color: #005B8E;
}
.nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 10px;
    text-align: center;
}
.nav-bar a {
    text-decoration: none;
    color: black;
    padding: 10px;
    display: inline-block;
    font-weight: bold;
}
.user-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}
.user-info img {
    width: 50px;
    margin-right: 10px;
}

.btn-custom {
    background: white;
    color: black;
    font-weight: bold;
    border-radius: 25px;
    width: 80%;
    margin: 10px auto;
    padding: 12px;
}


.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 0;
    box-shadow: 0px -2px 5px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-around;
}
.bottom-nav a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    text-align: center;
}
.header {
    /* background-color: #0072bc; */
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.form-control {
    border-radius: 10px;
    margin-bottom: 15px;
}