/* -------- 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: 450px;
    margin: 30px auto;
}

/* -------- Headings -------- */
h1 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}
.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: #0064D2;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 20px;
    border: 1px solid #0064D2;
    border-radius: 20px;
    transition: background 0.3s;
}
.create-link:hover,
.signin-link:hover,
.btn-link:hover {
    background: #f7f7f7;
}

/* -------- 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: #0064D2;
}
input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

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

/* -------- Buttons -------- */
.btn-primary {
    width: 100%;
    padding: 16px;
    background: #0064D2;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}
.btn-primary:hover {
    background: #0056b3;
}

/* -------- 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: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 25px;
    background: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}
.oauth-btn:hover {
    background: #f7f7f7;
    border-color: #999;
}
.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;
}
