html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    scroll-behavior: smooth;

    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(0, 0, 0, 0.73) 17%, 
                rgba(0, 0, 0, 0.66) 35%, 
                rgba(0, 0, 0, 0.55) 62%, 
                rgba(0, 0, 0, 0.4) 100%), 
                url('../../images/background.png') no-repeat center center / cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;

    position: absolute;
    top: 95px;
    left: 70%;
    transform: translateX(-50%);
}

.form-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: rgb(255, 109, 0) !important;
}

.form-label {
    font-weight: bold;
    color: black;
}

.submit-btn {
    background-color: rgb(255, 109, 0) !important;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    margin-left: 155px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #8B4513, chocolate);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

/* Skill preview tags */
.preview-tags span.badge {
    display: inline-flex;
    align-items: center;
    background-color: #17a2b8;
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.preview-tags span.badge .remove-skill {
    cursor: pointer;
    margin-right: 6px;
    font-weight: bold;
}
