﻿
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

#LoginPage {
    overflow: auto;
}
#LoginPage .content {
    flex: 1;
    overflow-y: auto;
/*    padding: 80px 30px;*/
/*    margin-top: 80px;*/
/*    margin-bottom: 80px;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

#LoginPage .container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px; /* 讓滾動到底部時有留白空間 */
    margin-top: 20px;
}

#LoginPage .member-logo {
    width: 100px;
}

#LoginPage .app-logo {
    display: block;
    margin: 0px auto;
}

#LoginPage h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

#LoginPage form {
    display: flex;
    flex-direction: column;
}

#LoginPage .input-group {
    margin-bottom: 15px;
}

#LoginPage label {
    margin-bottom: 5px;
    font-weight: bold;
}

#LoginPage input[type="email"],
#LoginPage input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#LoginPage .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    #LoginPage button {
        background-color: #a47464;
        color: #ffffff;
        padding: 10px;
        border: none;
        border-radius: 100px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 30px;
        transition-duration: 0.3s;
    }

        #LoginPage button:hover {
            background-color: #8b645a;
            border-color: #8b645a;
            font-weight: bold;
        }

#LoginPage .g_id_signin {
    margin: 10px;
}


#LoginPage .register {
    text-align: center;
    margin-top: 20px;
}

#LoginPage .services {
    list-style: none;
    padding: 0;
    text-align: center;
}

    #LoginPage .services li {
        margin: 5px 0;
    }

    #LoginPage .options a {
        text-decoration: none;
        color: #a47464;
    }

        #LoginPage .options a:hover {
            text-decoration: underline;
        }

.modal-header {
    background-color: #a47464;
    color: #ffffff;
}

@media (max-width: 768px) {
    #LoginPage .container {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    #LoginPage .content {
        padding: 10px;
/*        margin-top: 60px;*/
        /* 原本 80px，縮小為 60px */
    }

    #LoginPage .container {
        padding: 15px;
    }

}