/* Labels */
.seed-label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #bbb;
}
form.seed-form {
    text-align: center;
}

/* Input Fields */
.seed-input,
.seed-textarea {
    width: 100%;
    background: white;
    border-radius: 10px;
    border: none;
    padding: 15px;
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    box-shadow: inset 0 0 0 1px #ccc;
}

.seed-textarea {
    height: 120px;
    resize: vertical;
}

/* DROPZONE */
.seed-dropzone {
    background: #fff;
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    border: 2px dashed #d1d1d1;
    position: relative;
    margin-bottom: 30px;
}

.seed-dropzone p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.seed-subtext {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

/* Hidden File Input */
.seed-file {
    display: none;
}

/* Select File Button */
.select-file-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: #fff;
    border: 2px solid;
    border-image: linear-gradient(90deg, #3C8527, #18689D) 1;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    color: #000;
}
.select-file-btn:hover{
    background: linear-gradient(90deg, #3C8527 0%, #18689D 100%);
    border: 2px solid;
    border-image: linear-gradient(90deg, #3C8527, #18689D) 1;
}

/* Submit Button */
.seed-submit-btn {
    width: 26%;
    border: 2px solid;
    border-image: linear-gradient(90deg, #3C8527, #18689D) 1;
    background: linear-gradient(90deg, #3C8527 0%, #18689D 100%);
    padding: 14px;
    border-radius: 3px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.seed-submit-btn:hover {
    border: 2px solid;
    background: transparent;
    border-image: linear-gradient(90deg, #3C8527, #18689D) 1;
    opacity: 0.85;
}

.seed-preview {
    border: 2px solid #ccc;
    padding: 4px;
    background: #fff;
}

.seed-success-msg {
    background: #e2ffe2;
    border-left: 4px solid #22a122;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 600;
    color: #1b7d1b;
}

