﻿
body.light-theme {
    background: white !important;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.account-details {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background-color: #515151;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    margin-bottom: 30px;
}

    .account-details h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
        color: #ffffff;
        text-align: center;
    }

    .account-details label {
        display: block;
        margin-top: 15px;
        font-size: 14px;
        color: #ffffff;
    }

.input-field {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #ffffff;
    background-color: #515151;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .input-field:focus {
        border-color: #ff9800;
        box-shadow: 0 0 5px rgba(255, 152, 0, 0.5);
        outline: none;
    }

.change-button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #f0b90b;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

    .change-button:hover {
        background-color: #e68900;
    }

.note {
    margin-top: 20px;
    font-size: 15px;
    color: #cccccc;
    text-align: center;
}

.email-field {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #ffffff;
    background-color: #333;
    opacity: 0.6;
    cursor: not-allowed;
}

    .email-field:focus {
        border-color: #ccc;
        box-shadow: none;
    }

body.light-theme .account-details {
    background-color: #e0e0e0;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    body.light-theme .account-details h2 {
        color: #333;
    }

    body.light-theme .account-details label {
        color: #333;
    }

body.light-theme .input-field {
    background-color: #e6e5e5;
    border: 1px solid #c4c4c4;
    color: #626262;
}

    body.light-theme .input-field:focus {
        border-color: #ff9800;
        box-shadow: 0 0 5px rgba(255, 152, 0, 0.5);
        outline: none;
    }

body.light-theme .email-field {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    opacity: 0.7;
    cursor: not-allowed;
}

    body.light-theme .email-field:focus {
        border-color: #c4c4c4;
        box-shadow: none;
    }

body.light-theme .change-button {
    background-color: #ff954e;
    color: #000;
    transition: background-color 0.3s;
    border: 1px solid #000000;
}

    body.light-theme .change-button:hover {
        background-color: #d79b08;
    }

body.light-theme .note {
    color: #666666;
}

.recaptcha {
    margin: 20px 0;
    text-align: center;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 12px;
    right: 15px;
    cursor: pointer;
    color: #aaa;
    font-size: 14px;
}

.settings-section2 {
    width: 80%;
    max-width: 500px;
    min-width: 400px;
    margin: 0px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .settings-section2 {
        width: 50%;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .settings-section2 {
        width: 10%;
        padding: 8px;
        border-radius: 5px;
    }
}

@media (min-width: 768px) and (max-width: 912px) {
    .settings-section2 {
        width: 50%;
        padding: 10px;
    }
}

.settings-section h3 {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    border-bottom: 1px solid #f0b90b;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.info-icon {
    color: #f0b90b;
    font-size: 0.8em;
    margin-left: 5px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border: 1px solid #f0b90b;
    border-radius: 24px;
    transition: 0.4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 5px;
        bottom: 3px;
        background-color: #fff;
        transition: 0.4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #ff9800;
}

    input:checked + .slider:before {
        transform: translateX(24px);
        background-color: #1e1e1e;
    }

.confirm-button {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: transparent;
    border: 1px solid #f0b90b;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

    .confirm-button:hover {
        background-color: #e68900;
        color: #ffffff;
    }

hr {
    border: none;
    border-top: 1px solid #f0b90b;
    margin: 20px 0;
}

body.light-theme {
    background: #c8c3c3;
    color: #333;
}

    body.light-theme .settings-section2 {
        background-color: #f0f0f0;
        color: #333;
    }

    body.light-theme h3 {
        color: #333;
    }

    body.light-theme .info-icon {
        color: #ff9800;
    }

.toggle-switch .slider {
    background-color: #373737;
}

body.light-theme .toggle-switch .slider {
    background-color: #9b9b9b;
    border: 1px solid #ccc;
}

body.light-theme .slider:before {
    background-color: #fff;
}

body.light-theme input:checked + .slider {
    background-color: #ff9800;
}

    body.light-theme input:checked + .slider:before {
        background-color: #f0f0f0;
    }

body.light-theme .confirm-button {
    color: #333;
    border-color: #ff9800;
}

    body.light-theme .confirm-button:hover {
        background-color: #d79b08;
        color: #fff;
    }

body.light-theme hr {
    border-top: 1px solid #ff9800;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #ff9800;
    color: #1e1e1e;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50%;
    margin-left: 5px;
    cursor: help;
    z-index: 1000;
}

    .info-icon:hover {
        background-color: #b44e00;
    }

body.light-theme .info-icon {
    background-color: #ff9800;
    color: #4e4e4e;
}

.account-security {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
}

body.light-theme .account-security {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #dfdfdf !important;
    border-radius: 10px;
}

.account-security h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ff9800;
}

body.light-theme .account-security h3 {
    color: #727272;
}

.account-security p {
    margin: 10px 0;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.2;
}

.highlighted {
    color: #ff9800;
    font-weight: bold;
}

.button-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.main-button {
    padding: 10px 20px;
    background-color: #ff9800;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.secondary-button {
    padding: 10px 20px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #f0b90b;
    border-radius: 4px;
    cursor: pointer;
}

.small-button {
    padding: 5px 10px;
    font-size: 12px;
    background-color: #ff9800;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.action-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-text {
    color: #f0b90b;
    font-size: 12px;
}

body.light-theme .info-text {
    color: #ff7700 !important;
    font-size: 12px;
}

.divider {
    border: none;
    border-top: 1px solid #f0b90b;
    margin: 15px 0;
}

.authenticator-code-section label {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
}

.code-input-container {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.code-field {
    width: calc(100% - 40px);
    padding: 10px;
    font-size: 14px;
    background-color: #333;
    color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px;
    opacity: 0.6;
    cursor: not-allowed;
}

.copy-icon-button {
    background-color: #ff9800;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

body.light-theme .warning-text {
    font-size: 15px !important;
    color: #ff7700 !important;
    margin-bottom: 25px !important;
}

.warning-text {
    font-size: 15px;
    color: #f0b90b !important;
    margin-bottom: 25px !important;
}

.image-button,
.print-button {
    padding: 10px 20px;
    background-color: transparent;
    color: #f0b90b;
    border: 1px solid #f0b90b;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}

.verify-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.otp-input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    background-color: #333;
    color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-button {
    padding: 10px 20px;
    background-color: #f0b90b !important;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

body.light-theme .account-security {
    background-color: #ffffff;
    color: #333333;
}

    body.light-theme .account-security h2 {
        color: #ff7700;
    }

    body.light-theme .account-security p {
        color: #626262;
    }

body.light-theme .highlighted {
    color: #ff7700;
    font-weight: bold;
}

body.light-theme .main-button {
    background-color: #ff7700;
    color: #ffffff;
}

body.light-theme .secondary-button {
    background-color: transparent;
    color: #333333;
    border: 1px solid #ff7700;
}

body.light-theme .small-button {
    background-color: #ff7700;
    color: #ffffff;
}

body.light-theme .action-container .info-text {
    color: #ff7700;
}

body.light-theme .divider {
    border-top: 1px solid #ff7700;
}

body.light-theme .authenticator-code-section label {
    color: #333333;
}

body.light-theme .code-input-container .code-field {
    background-color: #f0f0f0;
    color: #333333;
    border: 1px solid #cccccc;
}

body.light-theme .copy-icon-button {
    background-color: #f96800;
    color: #333333;
}

body.light-theme .warning-text {
    color: #d9534f;
}

body.light-theme .image-button,
body.light-theme .print-button {
    color: #ff7700;
    border: 1px solid #ff7700;
}

body.light-theme .otp-input {
    background-color: #f0f0f0;
    color: #333333;
    border: 1px solid #cccccc;
}

body.light-theme .submit-button {
    background-color: #ff7700;
    color: #ffffff;
}

.authenticator-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.authenticator-code-section {
    flex: 1;
}

.qr-code-section {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 10px;
}

    .qr-code-section img {
        max-width: 300px;
        max-height: 300px;
    }
