* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Geist', sans-serif;
    background: url('/views/static/img/BaryonsBackgroundLarge.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    height: 100vh;
    background-color: transparent;
}

.left {
    flex: 1;
    background: transparent;
}

.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
}

.content {
    text-align: center;
    max-width: 400px;
}

.desktop-content {
    display: block;
    text-align: center;
    max-width: 400px;
}

.mobile-content {
    display: none;
    text-align: center;
    max-width: 400px;
}

.desktop-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 30px;
}

.mobile-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 30px;
}

.circle-image {
    margin-bottom: 20px;
}

.circle-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #dbdbdb;
}

p {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
}

.signup {
    /* background-color: #6a4cd8; */
    background-color: #5fb8d9;
    color: #fff;
}

.signup:hover {
    background-color: #349dc3;
}

.login {
    background-color: transparent;
    /* color: #6a4cd8;
    border: 2px solid #6a4cd8; */
    color: #5fb8d9;
    border: 2px solid #5fb8d9;
}

.login:hover {
    background-color: #5fb8d9;
    color: #fff;
}

.terms {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #aaa;
}

.terms a {
    color: #5fb8d9;
    text-decoration: none;
}
.terms a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsive Design */
@media (max-width: 830px) {

    body,
    html {
        height: 100%;
        font-family: 'Geist', sans-serif;
        background: url('/views/static/img/BaryonsBackgroundLarge.jpg') no-repeat center center fixed;
        background-size: cover;
    }

    .container {
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .right {
        flex: 1;
        width: 100%;
        background-color: transparent;
    }

    .content {
        text-align: center;
        max-width: 90%;
        background-color: rgba(255, 255, 255, 0.9);
        /* White background */
        border-radius: 15px;
        /* Rounded corners */
        padding: 20px;
        /* Padding */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* Box shadow */
        height: 100%;
        max-height: 800px;
    }

    .desktop-content {
        display: none;
    }

    .mobile-content {
        display: block;
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    body,
        html {
            height: 100%;
            font-family: 'Geist', sans-serif;
            background: url('/views/static/img/BaryonsBackgroundLarge.jpg') no-repeat center center fixed;
            background-size: cover;
        }

    .container {
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .right {
        flex: 1;
        width: 100%;
        background-color: transparent;
    }

        .content {
            text-align: center;
            max-width: 90%;
            background-color: rgba(255, 255, 255, 0.9);
            /* White background */
            border-radius: 15px;
            /* Rounded corners */
            padding: 20px;
            /* Padding */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            /* Box shadow */
            height: 100%;
                max-height: 800px;
        }

                .desktop-content {
                    display: none;
                }
        
                .mobile-content {
                    display: block;
                }
}