/* Submit Page Styles */

/* Form Container - Centered Layout */
.form-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: #FAFAFA;
}

/* Logo */
.page-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.page-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Form Card - Clean White Card */
.form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
}

/* Form Title and Subtitle */
.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-neutral-900);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--brand-neutral-600);
    margin-bottom: 2rem;
    text-align: center;
}

/* Form Inputs */
.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-neutral-800);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    color: var(--brand-neutral-900);
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(240, 154, 138, 0.1);
}

.form-control::placeholder {
    color: var(--brand-neutral-400);
}

/* Solution Groups */
.solution-group {
    background: #FAFAFA;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.solution-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-remove {
    background: none;
    border: none;
    color: var(--brand-error);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s ease;
}

.btn-remove:hover {
    color: var(--brand-error-light);
    text-decoration: underline;
}

.btn-add {
    width: 100%;
    background: white;
    border: 2px dashed var(--brand-accent);
    color: var(--brand-accent);
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.btn-add:hover {
    background: rgba(240, 154, 138, 0.05);
    border-color: var(--brand-accent-dark);
    color: var(--brand-accent-dark);
}

.btn-submit {
    width: 100%;
    background: var(--brand-accent);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background: var(--brand-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(240, 154, 138, 0.3);
}

/* Back Link */
.back-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--brand-neutral-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--brand-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .page-logo img {
        width: 60px;
        height: 60px;
    }
}
