/* Page-specific variables and overrides */
body {
    background: var(--bg-light);
    min-height: 100vh;
}

.main-container {
    display: flex;
    min-height: calc(100vh - 80px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    display: flex;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    min-height: 600px;
}

.left-side {
    flex: 1;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-darker) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.decorative-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 50px;
    left: 80px;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 200px;
    left: 20px;
}

.circle-4 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    border-color: rgba(255, 215, 0, 0.4);
}

.circle-5 {
    width: 120px;
    height: 120px;
    bottom: 100px;
    right: 80px;
    border-color: rgba(255, 215, 0, 0.6);
}

.left-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo-main {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 32px;
}

.brand-title {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    font-size: 1.2rem !important;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.description {
    color: var(--text-lighter);
    font-size: 1rem !important;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.dot.active {
    background: var(--primary-color);
}

.right-side {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    margin-bottom: 2rem;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(166, 116, 179, 0.1);
    background: white;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
    width: auto;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.sign-in-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.sign-in-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.create-account {
    text-align: center;
    color: var(--text-light);
}

.create-account a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        margin: 1rem;
        justify-content: center;
    }

    .left-side {
        display: none;
    }

    .right-side {
        padding: 2rem;
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .main-container {
        padding: 1rem;
        justify-content: center;
        align-items: center;
    }
}