/* 
 * simple-form-page.css
 * Generic CSS for simple form pages like login, password reset, etc.
 */

.form-page-container {
    display: flex;
    min-height: calc(100vh - 80px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
}

.form-content-wrapper {
    display: flex;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    min-height: 500px;
}

.form-side {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

.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-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Decorative elements for login page */
.decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 30%;
}

.circle-4 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
}

.circle-5 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 10%;
}

/* Left side content for login page */
.left-side {
    position: relative;
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.left-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.logo-main {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Media queries */
@media (max-width: 768px) {
    .form-content-wrapper {
        margin: 1rem;
        justify-content: center;
    }
    
    .form-side {
        padding: 2rem;
    }
    
    .form-page-container {
        padding: 1rem;
    }
}