* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --peps-blue: #1193d2;
    --peps-blue-ink: #0b4e73;
    --peps-blue-bg: rgba(17, 147, 210, 0.08);
    --peps-blue-border: rgba(17, 147, 210, 0.22);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page .sessions .product-group{
    display: grid;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(17, 147, 210, 0.04);
    border: 1px solid rgba(17, 147, 210, 0.12);
}

.page .sessions .product-title{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--peps-blue-bg);
    border: 1px solid var(--peps-blue-border);
    color: var(--peps-blue-ink);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.page .sessions .product-title::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--peps-blue);
    box-shadow: 0 10px 18px rgba(17, 147, 210, 0.24);
    flex: 0 0 10px;
}

.page #selectedProduct{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--peps-blue-bg);
    border: 1px solid var(--peps-blue-border);
    color: var(--peps-blue-ink);
    font-weight: 800;
    width: fit-content;
}

.page #selectedProduct::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--peps-blue);
    flex: 0 0 8px;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.brand{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.brand-logo{
    max-width: 180px;
    width: auto;
    max-height: 80px;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid #fcc;
}
