/* General Body Styles */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f0f0f0;
    color: #333;
}

/* --- Landing Page Styles --- */
.landing-body {
    text-align: center;
    margin-top: 100px;
}
.landing-body .button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
}

/* --- Login Page Styles --- */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-body .signin-box {
    text-align: center;
}

/* --- App Page Body Style --- */
.app-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
