.bookinger-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bookinger-auth-wrap {
    padding-top: 40px;
    padding-bottom: 60px;
}

.bookinger-card {
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.bookinger-auth-card {
    max-width: 520px;
    margin: 0 auto;
}

.bookinger-header {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #0D1B2A;
    text-align: center;
}

.bookinger-auth-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0D1B2A;
}

.bookinger-input {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    margin-bottom: 18px;
    box-sizing: border-box;
    font-size: 15px;
    height: auto;
}

.bookinger-input:focus {
    outline: none;
    border-color: #1A73E8;
    box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}

.bookinger-auth-btn-wrap {
    text-align: center;
    margin-top: 8px;
}

.bookinger-btn {
    background: #1A73E8;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    min-width: 150px;
    text-decoration: none;
    display: inline-block;
}

.bookinger-btn:hover {
    opacity: 0.95;
    color: #ffffff;
}

.bookinger-auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 22px 0 18px;
    color: #64748b;
    font-size: 14px;
}

.bookinger-auth-divider::before,
.bookinger-auth-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.bookinger-auth-divider span {
    padding: 0 12px;
}

.bookinger-auth-google {
    text-align: center;
    margin-bottom: 18px;
}

.bookinger-google-btn {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    padding: 12px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #0D1B2A;
    text-decoration: none;
    font-weight: 600;
    background: #ffffff;
    box-sizing: border-box;
}

.bookinger-google-btn:hover {
    border-color: #1A73E8;
    color: #1A73E8;
}

.bookinger-auth-links {
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.bookinger-auth-links a {
    color: #1A73E8;
    text-decoration: none;
    font-weight: 500;
}

.bookinger-auth-links a:hover {
    text-decoration: underline;
}

.bookinger-message-error,
.bookinger-message-info {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
}

.bookinger-message-error {
    color: #b42318;
    background: #fef3f2;
    border: 1px solid #fecdca;
}

.bookinger-message-info {
    color: #1d2939;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
}