:root {
    --primary-color: #9333ea;
    --primary-dark: #db2777;
    --secondary-color: #7e22ce;
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --background: #f8f9fa;
    --white: #ffffff;
    --border-radius: 15px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Auth Pages */
.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
}

.auth-wrapper {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 1000px;
    max-width: 95%;
    min-height: 600px;
}

.auth-side {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-side-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.auth-side h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.auth-features {
    margin-top: 2rem;
    text-align: right;
}

.feature {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-main {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.auth-box h1 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
