.form-container {
            max-width: 400px;
            margin: 40px auto;
            padding: 30px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .auth-form h2 {
            text-align: center;
            margin-bottom: 24px;
            color: #333;
            font-size: 24px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-size: 14px;
            color: #555;
            font-weight: 500;
        }
        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            box-sizing: border-box;
        }
        .form-group input:focus {
            outline: none;
            border-color: #C2A98B;
        }
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 20px;
            font-size: 12px;
            color: #666;
        }
        .form-checkbox input[type="checkbox"] {
            margin-top: 2px;
        }
        .form-checkbox a {
            color: #C2A98B;
            text-decoration: none;
        }
        .form-checkbox a:hover {
            text-decoration: underline;
        }
        .btn-primary {
            width: 100%;
            padding: 14px;
            background: #C2A98B;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn-primary:hover {
            background: #b0987a;
        }
        .form-switch {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: #666;
        }
        .form-switch a {
            color: #C2A98B;
            text-decoration: none;
            font-weight: 500;
        }
        .form-switch a:hover {
            text-decoration: underline;
        }