/* login.css - Discord Bot 管理系統登入頁面專用樣式 */
.login-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background-color: #36393f;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.login-title {
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}
.login-subtitle {
    font-size: 1rem;
    color: #b9bbbe;
    text-align: center;
    margin-bottom: 30px;
}
.discord-button {
    display: block;
    width: 100%;
    background-color: #5865F2;
    color: white;
    padding: 14px 20px;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-bottom: 20px;
}
.discord-button:hover {
    background-color: #4752c4;
    color: white;
}
.discord-icon {
    margin-right: 10px;
}
.info-box {
    margin-top: 30px;
    padding: 15px;
    background-color: #2f3136;
    border-radius: 4px;
    color: #b9bbbe;
}
.info-box h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.info-list {
    list-style-type: none;
    padding-left: 0;
}
.info-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: start;
}
.info-icon {
    color: #5865F2;
    margin-right: 10px;
    font-size: 1rem;
}
.alert {
    margin-bottom: 20px;
}
.or-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}
.or-divider:before, .or-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #4f545c;
}
.or-divider:before {
    left: 0;
}
.or-divider:after {
    right: 0;
}
.or-text {
    display: inline-block;
    padding: 0 10px;
    background-color: #36393f;
    position: relative;
    color: #b9bbbe;
}
.form-control {
    background-color: #2f3136;
    border: 1px solid #202225;
    color: #dcddde;
    padding: 12px;
    border-radius: 4px;
}
.form-control:focus {
    background-color: #2f3136;
    border-color: #5865F2;
    color: #dcddde;
    box-shadow: none;
}
.form-label {
    color: #b9bbbe;
    margin-bottom: 8px;
}
.login-button {
    width: 100%;
    background-color: #5865F2;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}
.login-button:hover {
    background-color: #4752c4;
}
.password-form {
    margin-bottom: 20px;
}
.form-check-label {
    color: #b9bbbe;
}
.discord-guide {
    margin-top: 20px;
    padding: 15px;
    background-color: #2f3136;
    border-left: 4px solid #5865F2;
    border-radius: 4px;
    color: #b9bbbe;
}
.discord-guide h4 {
    color: #5865F2;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.guide-steps {
    list-style: none;
    padding-left: 0;
}
.guide-steps li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.guide-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5865F2;
}
.command-code {
    background-color: #202225;
    color: #00d166;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
}
