body {
    font-family: Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 2rem;
    color: #7c7e7d;
}

h1 {
    font-weight: 400;
    margin-bottom: 2rem;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="file"],
.custom-fileinput{
    width: 100%;
    padding: 0.75rem;
    border:none;
    border-bottom: 2px solid #888;
    background: #f5f3f1;
    font-size: 12px;
    color: #7c7e7d;
    transition: all 0.3s ease;
    position: relative;
}

.upload-note {
    font-size: 10px;
    color: #7c7e7d;
    margin-top: -10px;
}

.checkboxes {
    font-size: 12px;
}

.checkboxes label {
    display: block;
    margin-bottom: 0.5rem;
}

.buttons {
    display: flex;
    justify-content: start;
    gap: 1rem;
    margin-top: 1rem;
}

button {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.submit-btn {
    background-color: #ffc800;
    color: #000;
}

.submit-btn.disabled {
    background-color: #b3b3b3;
    color: #fff;
    cursor: not-allowed;
}
.winners-btn {
    background-color: #b3b3b3;
    color: #fff;
}

.detalii-btn {
    position: absolute;
    right: 21px;
    top: 11px;
    padding: 0 0.5rem;
    background: #888;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    border: none;
}

.relative {
    position: relative;
}

.radio-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.field .text-muted {font-size:10px;}
/* Just-validate styling */
.field {
    position: relative;
    margin-bottom: 1.5rem;
}

@media (max-width: 960px) {
    body {
        padding: 1rem!important;
    }
}

@media (max-width: 960px) {
    body {
        padding: 1rem 0rem!important;
    }
}

