/* Account Login Styles */

/* Base body styling */
body {
    background: #F0F2F4;
    margin: 0;
}

/* Header Bar Styles */
.header-bar {
    height: 60px;
    background: #22292F;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.header-logo {
    margin-right: 20px;
}

.header-title {
    color: white;
    font-size: 16px;
    font-family: Roboto;
}

/* Login Card Styles */
.login-container {
    width: 445px;
    margin: 100px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(34, 41, 47, 0.2);
    border: 1px solid #E0E3E7;
    padding: 40px 60px;
}

.login-title {
    text-align: center;
    font-size: 28px;
    font-family: 'Noto Sans TC';
    font-weight: 700;
    color: #22292F;
}

/* Form Styles */
.error-message {
    color: red;
    margin-bottom: 12px;
}

.form-label {
    margin-top: 20px;
    display: block;
    font-family: Roboto;
    color: #22292F;
}

.form-input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 16px;
    font-family: Roboto;
    box-sizing: border-box;
}

.form-input.account-input {
    border: 1px solid #A1BBCA;
}

.form-input.password-input {
    border: 1px solid #0092B2;
}

/* Remember me checkbox */
.remember-container {
    margin-top: 16px;
    display: flex;
    align-items: center;
}

.remember-checkbox {
    margin-right: 8px;
}

.remember-label {
    font-size: 14px;
    font-family: Roboto;
}

/* Login Button */
.button-container {
    margin-top: 32px;
    text-align: center;
}

.login-button {
    width: 190px;
    height: 48px;
    background: #13547A;
    color: white;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-family: Roboto;
    cursor: pointer;
}

.login-button:hover {
    background: #0f4560;
}