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

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #f7f3ff;
}

.container {
    display: flex;
    height: 100vh;
}

.left {
    flex: 1;
    background: url('/static/img/Maya_Background.jpg') no-repeat center center;
    background-size: cover;
}

.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

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

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

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

.signup {
    background-color: #6a4cd8;
    color: #fff;
}

.signup:hover {
    background-color: #573bb3;
}

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

.login:hover {
    background-color: #6a4cd8;
    color: #fff;
}

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


/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .right {
        flex: 1;
        width: 100%;
        background: linear-gradient(to bottom, rgba(106, 76, 216, 0.5), rgba(106, 76, 216, 0.5)),
            url('/static/img/Maya_Background.jpg') no-repeat center center;
        background-size: cover;
    }

        .content {
            text-align: center;
            max-width: 450px;
            background-color: #fff;
            /* White background */
            border-radius: 15px;
            /* Rounded corners */
            padding: 20px;
            /* Padding */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            /* Box shadow */
        }
}