* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    user-select: none;
    height: 100%;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.navbar {
    display: flex;
    width: 100%;
    height: 75px;
    justify-content: flex-end; /* pushes right section to the right */ /* justify-content: space-between; */
    align-items: center;
    background-color: #4597bf;
    color: white;
    padding: 5px 30px;
    /*box-shadow: 0 1px 1px rgba(111, 0, 255, 0.4); /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
    position: relative;/* position: sticky; */
    top: 0;
    z-index: 100;
}

.navbar .logo {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    min-width:100px;
    position: absolute;
    top: -20px;
    left: 1%; /* was 50% */
    /*transform: translateX(-50%);*/
}

.navbar .logo img {
    width: 120px; /* was 100px */
    height: auto;
    display: block;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.container {
    max-width: 80%;
    min-height: 60px;
    margin: 30px auto;
    padding: 20px;
    flex: 1; /* Allows content to grow dynamically */
}

.slogan {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 250px;
}

.container .slogan img {
    width: 400px;
    height: auto;
    display: block;
}

#container3D {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
}

.register-btn-container, .login-btn-container {
    display: flex;
    justify-content: center;
}

.register-btn-container button:hover, .login-btn-container button:hover {
    background-color: #5f3c85;
}

.register-btn-main, .login-btn-main {
    /*width: 25%;*/
    padding: 10px;
    background-color: #764EA0;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.left-side {
    max-width: 30%;
    display: flex;
    position: absolute;
    left: 5px;
    top: 100px;
    background-color: red;
    padding: 15px;
}

.right-side {
    max-width: 30%;
    display: flex;
    position: absolute;
    right: 5px;
    top: 100px;
    background-color: green;
    padding: 15px;
}

.terms-back-btn {
    width: 60px;
    height: 60px;
    display: flex;
    position: absolute;
    left: 25px;
    top: 120px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #2c3e50;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    animation: pulse 2s ease-in-out infinite; /* Name, duration, timing function, repeat count */
}

.terms-back-btn img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.footer {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #B8D0EC;*/
    background-color: #4597bf;
    color: white;
    font-size: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
}