 body {
            font-family: 'Arial', sans-serif;
            background-color: #007ced;
            margin: 0;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            color: white;
        }

        h1 {
            margin-bottom: 20px;
            font-size: 2.5rem;
            font-weight: bold;
            font-style: italic;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            color: #fff;
        }

        .container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
            max-width: 800px;
        }

        .form-container {
            width: 45%;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            margin-right: 20px;
            color: #333;
        }

        .form-container input,
        .form-container button {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }

        .form-container input[type="file"] {
            padding: 5px;
        }

        .form-container button {
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-container button i {
            margin-right: 8px;
        }

        .form-container .generate-button {
            background-color: #007ced;
            color: white;
        }

        .form-container .generate-button:hover {
            background-color: #005bb5;
        }

        .form-container .remove-image-button {
            background-color: #dc3545;
            color: white;
        }

        .form-container .remove-image-button:hover {
            background-color: #c82333;
        }

        .form-container .clear-button {
            background-color: #ffc107;
            color: white;
        }

        .form-container .clear-button:hover {
            background-color: #e0a800;
        }

        .card-container {
            width: 45%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .card {
            width: 100%;
            padding: 15px;
            background-color: #f4f4f4;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            text-align: center;
            margin-top: 10px;
            color: #333;
            display: none;
            position: relative;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: #007ced;
            border-radius: 10px 10px 0 0;
        }

        .card img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 5px solid #007ced;
            cursor: move;
            user-select: none;
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
        }

        .card h2 {
            margin-top: 120px;
            color: #007ced;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .card p {
            margin: 5px 0;
            font-size: 0.9rem;
            color: #555;
        }

        .card .contact-info {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card .contact-info i {
            margin-right: 8px;
            color: #007ced;
        }

        .save-button {
            margin-top: 10px;
            padding: 8px 12px;
            background-color: #28a745;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .save-button i {
            margin-right: 8px;
        }

        .save-button:hover {
            background-color: #218838;
        }

        .resize-handle {
            width: 15px;
            height: 15px;
            background-color: #007ced;
            position: absolute;
            bottom: -7.5px;
            right: -7.5px;
            cursor: se-resize;
            border-radius: 50%;
        }