/* -------- Containers -------- */
.authContainer,
.welcome-card,
.info-card,
.form-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;
}
.authContainer {
    max-width: 420px;
    margin: 50px auto;
    padding: 44px 40px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(21, 19, 19, 0.08);
    border: 1px solid #f0f0f0;
}

/* -------- Headings -------- */
h1 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}
.authContainer h1 {
    font-family: var(--pbmit-heading-typography-font-family);
    font-size: 26px;
    line-height: 1.3;
    color: var(--pbmit-blackish-color);
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.welcome-card h2,
.form-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 500;
}
.welcome-card h2 { margin-bottom: 10px; }

/* -------- Header Row -------- */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.header-text {
    font-size: 14px;
    color: #333;
}

/* -------- Links (Create / Signin / General Button Links) -------- */
.create-link,
.signin-link,
.btn-link {
    color: var(--pbmit-global-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border: 1px solid var(--pbmit-global-color);
    border-radius: 50px;
    transition: all 0.3s;
}
.create-link:hover,
.signin-link:hover,
.btn-link:hover {
    background: var(--pbmit-global-color);
    color: #fff;
}

/* -------- Input Groups -------- */
.input-group {
    margin-bottom: 20px;
}
.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* -------- Inputs -------- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border 0.3s;
}
input:focus {
    outline: none;
    border-color: var(--pbmit-global-color);
}
input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}
.authContainer input[type="text"],
.authContainer input[type="email"],
.authContainer input[type="password"],
.authContainer input[type="tel"] {
    padding: 13px 16px;
    border-color: #d9d9d9;
    border-radius: 8px;
}
.authContainer input:focus {
    box-shadow: 0 0 0 3px rgba(21, 19, 19, 0.05);
}

/* -------- Rows -------- */
.name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* -------- Buttons -------- */
.btn-primary {
    display: block;
    width: 100%;
    padding: 13px 24px;
    background: var(--pbmit-global-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--pbmit-btn-typography-font-family);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-top: 6px;
}
.btn-primary:hover {
    background: var(--pbmit-blackish-color);
    color: #fff;
}

.authContainer .oauth-btn,
.authContainer .create-link,
.authContainer .signin-link {
    border-radius: 4px;
}
.authContainer form .btn-primary {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* -------- Divider -------- */
.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}
.divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ddd;
}
.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #666;
    font-size: 14px;
}

/* -------- OAuth Buttons -------- */
.oauth-btn {
    width: 100%;
    padding: 11px 16px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
    font-family: var(--pbmit-btn-typography-font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--pbmit-blackish-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
}
.oauth-btn:hover {
    background: #faf9f9;
    border-color: var(--pbmit-blackish-color);
}
.oauth-btn img {
    width: 22px;
    height: 22px;
}

/* -------- Alerts -------- */
.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #155724;
    font-size: 14px;
}
.error {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #856404;
    font-size: 14px;
}

/* -------- Info Cards -------- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.info-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.info-row:last-child {
    border-bottom: none;
}
.info-label {
    color: #666;
    font-size: 14px;
}
.info-value {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* -------- Page Header -------- */
.header {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header h1 {
    font-size: 24px;
    font-weight: 500;
}

/* -------- Notes -------- */
.password-hint,
.email-note {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* -------- Section Titles -------- */
.section-title {
    font-size: 18px;
    font-weight: 500;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}
