.form-group {
    margin-bottom: 2rem;
}

.form-group input {
    width: 100%;
    background: none;
    color: #fff;
    font-size: 30px;
    font-weight: 100;
    border: 0;
    border-bottom: 1px solid #fff;
    height: 60px;
    padding: 10px 0;
    font-family: 'Lato-Thin', sans-serif, serif;
}

.form-group label {
    color: #fff;
    font-size: 30px;
    font-weight: 100;
    font-family: 'Lato-Thin', sans-serif, serif;
    margin-bottom: 20px;
}

.date-group label {
    margin-right: 20px;
}

.date-group input {
    flex: 1;
}

.file-upload {
    z-index: 999;
}

.file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-info {
    margin-top: 10px;
    color: #ffffff;
    font-family: 'Lato-Thin', sans-serif, serif;
}

.file-list {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.file-list .file-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.file-list span {
    color: #fff;
    margin-right: 10px;
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.preview-item {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-item .remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgb(0, 0, 0);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    display: none;
    z-index: 9;
}

.preview-item:hover .remove {
    display: block;
}



input:focus,
select:focus,
textarea:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid #fff;
}

.form-group input::placeholder {
    color: #ffffff;
    font-family: 'Lato-Thin', sans-serif, serif;
    opacity: 1;
}

input[type="date"] {
    color: white;
    appearance: none;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

input[type="date"]::-moz-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-group input {
        width: 100%;
        background: none;
        color: #fff;
        font-size: 20px;
        font-weight: 100;
        border: 0;
        border-bottom: 1px solid #fff;
        height: 40px;
        padding: 5px 0;
        font-family: 'Lato-Thin', sans-serif, serif;
    }

    .form-group label {
        display: block;
        width: 100%;
        margin-right: 0px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .preview-item .remove {
        display: block;
    }
}






.form-group .inputError {
    border-bottom: 1px solid #ff0000;
}

.success-message {
    color: #28a745;
}