/* General Layout */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Landing Page Layout */
.landing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 10%;
    background-color: white;
}

.content-left {
    max-width: 50%;
}

.content-left h1 {
    font-size: 3rem;
    color: #4a2c8a;
    margin-bottom: 1rem;
}

.content-left p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

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

.sign-in-btn {
    font-size: 1.5rem;
    padding: 15px 30px;
    background-color: #4a2c8a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sign-in-btn:hover {
    background-color: #3a2272;
}

.sign-up-btn {
    font-size: 1.5rem;
    padding: 15px 30px;
    background-color: #4a2c8a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

.sign-up-btn:hover {
    background-color: #3a2272;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 5px;
    border: 1px solid #888;
    width: 40%;
    height: 20%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-content h2 {
    margin-bottom: 50px;
    font-size: 1rem;
    color: #4a2c8a;
}
