/* Custom Styles for Signup Elements */

.custom-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #0f172a;
    background: #f8fafc;
    resize: vertical;
    min-height: 100px;
    outline: none;
    transition: all 0.3s;
    box-sizing: border-box;
}

.custom-textarea:focus {
    border-color: #10B981;
    background: #ffffff;
    box-shadow: 0 0 0 4px #ecfdf5;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    padding: 24px 16px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.file-upload-wrapper:hover {
    border-color: #10B981;
    background: #ecfdf5;
}

.file-upload-wrapper i {
    font-size: 2rem;
    color: #64748b;
    transition: color 0.3s;
}

.file-upload-wrapper:hover i {
    color: #10B981;
}

.file-upload-wrapper span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Image preview thumbnail inside the file wrapper */
.preview-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 8px;
    border: 2px solid #10B981;
}
