    .resume-form {
        max-width: 800px;
        margin: 50px auto;
        background: #fff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        font-family: 'Arial', sans-serif;
    }

    .resume-form h2 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .resume-form p {
        color: #666;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .resume-form label {
        font-weight: bold;
        display: block;
        margin-bottom: 6px;
    }

    .resume-form input[type="text"],
    .resume-form input[type="email"],
    .resume-form select,
    .resume-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
    }

    .resume-form textarea {
        resize: vertical;
        min-height: 100px;
    }

    .file-upload {
        border: 2px dashed #ccc;
        padding: 30px;
        text-align: center;
        color: #999;
        border-radius: 10px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .file-upload:hover {
        border-color: #4a82f8;
        color: #4a82f8;
    }

  .resume-form button {
    background: linear-gradient(to right, #5f4ef1, #4a82f8);
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.resume-form button:hover {
    background: linear-gradient(to right, #4a82f8, #5f4ef1);
}