/* Components - Logo, Toggle, etc. */

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.logo p {
    font-size: 14px;
}

/* Theme Toggle Switch */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.theme-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 26px;
    background: rgba(120, 120, 120, 0.3);
    border-radius: 13px;
    border: 2px solid rgba(150, 150, 150, 0.4);
    transition: all 0.3s ease;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: rgba(200, 200, 200, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.theme-toggle input[type="checkbox"]:checked + .toggle-slider::after {
    transform: translateX(24px);
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
}

/* Divider */
.divider {
    text-align: center;
    margin: 25px 0;
    color: #999;
    font-size: 14px;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Auth Container specific */
.auth-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

/* Profile specific */
.profile-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
