/* =========================================================
   Global
========================================================= */
.account-body {
    font-family: 'Inter', sans-serif;
    background-color: black;
    margin: 0;
    padding: 0;
    color: white;
}


/* =========================================================
   Wrapper to center card on mobile
========================================================= */
.account-wrapper {
    min-height: 100vh;              /* full screen height */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================================
   Title: My Shop
========================================================= */
/* brand-logo */
.brand-logo {
    display: flex;
    margin: 4rem auto;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
}

.brand-logo svg {
    height: 60px;
    width: auto;
}

.brand-logo .text0 {
    letter-spacing: 0;
    fill: white;
    font-family: "Michroma";
    font-size: 100px;
    font-weight: 400;
}

.account-content {
    display: flex;
    flex-direction: column;
    width: 300px;
    max-width: 100%;
    margin: 1rem auto;
    align-items: center;
}

/* =========================================================
   Card containers (login + signup)
========================================================= */
.login-card,
.signup-card,
.change-password-card {
    background-color: rgb(240, 240, 240);
    color: black;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 100%;
    word-wrap: break-word;        /* legacy support */
    overflow-wrap: anywhere;     /* modern browsers */
    word-break: break-word;      /* fallback */
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.concent-pp-tc {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    margin: 0rem 0rem 1rem 0;
    font-size: 0.9rem;
}

.concent-pp-tc a {
    color: blue;
    text-decoration: underline;
    font-size: 0.9rem;
}

.concent-pp-tc input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin-top: -0.5rem;
}

/* =========================================================
   Card Headers
========================================================= */
.login-card h2,
.signup-card h2,
.change-password-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #111827;
}


/* =========================================================
   Inputs
========================================================= */
.login-card input,
.signup-card input,
.change-password-card input {
    width: 100%;
    height: 2.5rem;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    font-size: 1rem;
}

.login-card input:focus,
.signup-card input:focus,
.change-password-card input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}


/* =========================================================
   Buttons
========================================================= */
.login-card button,
.signup-card button,
.change-password-card button {
    background-color: #000;
    color: #ddd;
    padding: 0.6rem;
    border-radius: 0.375rem;
    border: none;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.login-card button:hover,
.signup-card button:hover,
.change-password-card button:hover {
    background-color: #222;
}


/* =========================================================
   Card footer text & links
========================================================= */
.login-card p,
.signup-card p,
.change-password-card p {
    margin-top: 1.25rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
}

.login-card p a,
.signup-card p a,
.change-password-card p a {
    color: #0000ff;
}

.login-card p a:hover,
.signup-card p a:hover,
.change-password-card p a:hover {
    text-decoration: underline;
}

#password-rules {
    text-align: left;
    list-style: none;
    padding-left: 0;
    font-size: 0.8rem;
    color: grey !important;
    margin-top: -0.5rem;
}

/* OTP */
.otp-timer {
    color: var(--linkColor);
    text-align: right;
    margin-top: -0.5rem;
    font-size: 0.9rem;
}

.otp-timer a {
    color: var(--linkColor);
    text-decoration: none;
}

.otp-timer a:hover {
    color: var(--linkHoverColor);
    text-decoration: none;
}

.otp-timer #timerValue {
    color: #808080;
}

/* Login Attempt */
.login-attempt-left {
    color: #808080;
    text-align: right;
    margin-top: -0.5rem;
    font-size: 0.9rem;
}

.password-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
}

.password-wrapper input {
    padding-right: 40px;
}

.password-wrapper .eye {
    position: absolute;
    top: 20px;
    right: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
}