navbar {
    font-weight: 100;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 50%;
    z-index: 3;
}

.navbar-brand h3 {
    font-weight: 100;
}

.nav-item {
    font-size: 1.4rem;
}
.nav-link:hover {
    transition: border 0.2s;
    border-bottom: 1px solid white;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

container {
    height: calc(100vh - 56px); /* Adjust based on the height of your navbar */
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

form div {
    margin-bottom: 15px;
}

.form-control-lg {
    width: 100%;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

body {
    padding-top: 56px; /* Adjust based on the height of your navbar */
}

.layout-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 56px); /* Adjust based on the height of your navbar */
    justify-content: center;
}

.layout-top {
    flex: 0 0 auto;
}

.layout-bottom {
    flex: 1;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    /* top: 0; */
    background: #fff;
    z-index: 10;
}

iframe {
    overflow: hidden;
    width: 100%;
    height: 700px;
  }