﻿html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* General styles */
body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('../../../images/Default/login_background1.jpeg') no-repeat 62% 34%;
    background-size: cover;
    text-align: center;
}

.container {
    display: grid;
    min-height: calc(70vh - 120px); /* Adjust for fixed header and footer */
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, .7);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.policy-container {
    display: grid;
    min-height: calc(70vh - 120px); /* Adjust for fixed header and footer */
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.request-invite-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
}

.onboarding-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.onboarding-actions {
    display: grid;
    align-self: center;
    justify-self: center;
}

.onboarding-btns {
    padding-top: 5px;
}

.control-label {
    color: #fff;
}

.form-onboarding {
    justify-self: center;
}

.container > h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    align-self: start;
}

.card > p {
    color: #000;
    text-align: start;
}

.card > .mt-3 > p {
    color: #000;
    text-align: start;
}

.card-header-onboarding {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.policy-text {
    color: #000;
    text-align: start;
}

button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px 0;
    transition: background-color 0.3s;
}

    button:hover {
        background-color: #0056b3;
    }

    button:focus {
        outline: none;
        box-shadow: 0 0 4px rgba(0, 123, 255, 0.8);
    }

.btn-show {
    background-color: #41294B !important;
    color: #fff !important;
}

.small-button {
    width: 20%;
    height: 40px;
    padding: 5px 15px;
    font-size: 16px;
    align-items: center;
    justify-self: center;
}

/* Navbar styles */
#onboarding-nav {
    display: flex;
    flex-flow: row;
    align-items: center;
}

.nav-right {
    justify-content: end;
}

.navbar {
    background-color: #000000;
    color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .navbar .navbar-brand img {
        max-height: 4em;
    }

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .navbar-nav li {
        margin: 0 10px;
    }

        .navbar-nav li a {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }

            .navbar-nav li a:hover {
                color: #007bff;
            }

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #000000;
    color: #ffffff;
    border-top: 1px solid #333333;
    height: 60px;
    position: relative;
}

    footer p {
        margin: 0;
        font-size: 14px;
    }

@media (min-height: 700px) {
    .wrapper {
        position: relative;
    }

    footer {
        position: relative;
    }
}